展示に示されているように、Microsoft BotFrameworkComposerを使用してチャットボットを構築しています。([展示]タブをクリックします。)

チャットボットには、GetUserDetailsという名前のダイアログが含まれています。GetUserDetailsには、ユーザーに名前の入力を求めるTextInputコントロールが含まれています。
ユーザー入力は、nameという名前のプロパティに保存されます。
最後のアクティブなダイアログが終了したときにプロパティを破棄できることを確認する必要があります。
名前に割り当てるスコープはどれですか?
正解:A
The dialog scope associates properties with the active dialog. Properties in the dialog scope are retained until the dialog ends.
Incorrect Answers:
A: The conversation scope associates properties with the current conversation. Properties in the conversation scope have a lifetime of the conversation itself. These properties are in scope while the bot is processing an activity associated with the conversation (for example, multiple users together in a Microsoft Teams channel).
B: The user scope associates properties with the current user. Properties in the user scope do not expire. These properties are in scope while the bot is processing an activity associated with the user.
C: The turn scope associates properties with the current turn. Properties in the turn scope expire at the end of the turn.
Reference:
https://docs.microsoft.com/en-us/composer/concept-memory?tabs=v2x