You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// Forward whatever C2 sent to the channel until a result is returned.
var result = await channel.SendActivityForResultAsync<object>(
turnContext.Activity,
async (activity) =>
{
// Just repeat message to C2
await turnContext.SendActivityAsync(MessageFactory.Text($"({channel.DisplayName}) {activity.Text}"), cancellationToken);
},
cancellationToken);
Simplify BotToBot.Bot1 to use reply streaming.
See #29
The text was updated successfully, but these errors were encountered: