public async Task PostAsync()
 {
     // Delegate the processing of the HTTP POST to the adapter.
     // The adapter will invoke the bot.
     await _adapter.ProcessAsync(Request, Response, _bot);
 }
 public async Task BotMessage()
 {
     await _botFrameworkHttpAdapter.ProcessAsync(Request, Response, _bot);
 }
 public async Task PostAsync()
 {
     await _adapter.ProcessAsync(Request, Response, _bot);
 }
 public async Task Index()
 {
     await Adapter.ProcessAsync(Request, Response, Bot);
 }
示例#5
0
 public async Task PostAsync()
 {
     // Delegate the processing of the HTTP POST to the adapter.
     // The adapter will invoke the bot.
     await Adapter.ProcessAsync(Request, Response, Bot).ConfigureAwait(false);
 }
 public async Task PostAsync()
 {
     logger.LogInformation("Recieved Teams message.");
     await adapter.ProcessAsync(Request, Response, bot);
 }
示例#7
0
 public Task PostAsync() => _adapter.ProcessAsync(Request, Response, _bot);
 public async Task BotMessageAsync()
 {
     await _botFrameworkHttpAdapter.ProcessAsync(Request, Response, _bot).ConfigureAwait(false);
 }