public async Task PostAsync()

in ChatBot/Controllers/BotController.cs [31:37]


        public async Task PostAsync()
        {
            // Delegate the processing of the HTTP POST to the adapter.
            // The adapter will invoke the bot.
            _logger.LogInformation("Handling the question from customer.");
            await _adapter.ProcessAsync(Request, Response, _bot);
        }