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

チャットボットには、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