Microsoft Bot Framework SDK を使用してボットを作成します。 カスタムテキスト応答を使用してイベントに応答するようにボットを構成する必要があります。 何を使うべきでしょうか?
正解:B
An activity handler is a class in the Bot Framework SDK that processes incoming activities (e.g., messages, events, etc.) from the user and generates outgoing activities (e.g., replies). By overriding the OnMessageActivityAsync method of the activity handler, you can provide custom logic for responding to user messages.