DialogStateManager 类
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
DialogStateManager 管理内存作用域和 pathresolvers MemoryScopes 是命名的根级别对象,这些对象可以存在于 dialogcontext 中,也可以存在于关闭状态 PathResolvers 中,允许用于映射诸如 $foo -> dialog.foo 之类的内容的快捷方式行为。
public class DialogStateManager : System.Collections.Generic.ICollection<System.Collections.Generic.KeyValuePair<string,object>>, System.Collections.Generic.IDictionary<string,object>, System.Collections.Generic.IEnumerable<System.Collections.Generic.KeyValuePair<string,object>>
type DialogStateManager = class
interface IDictionary<string, obj>
interface ICollection<KeyValuePair<string, obj>>
interface seq<KeyValuePair<string, obj>>
interface IEnumerable
Public Class DialogStateManager
Implements ICollection(Of KeyValuePair(Of String, Object)), IDictionary(Of String, Object), IEnumerable(Of KeyValuePair(Of String, Object))
- 继承
-
DialogStateManager
- 实现
-
ICollection<KeyValuePair<String,Object>> ICollection<KeyValuePair<TKey,TValue>> IDictionary<String,Object> IEnumerable<KeyValuePair<String,Object>> IEnumerable<KeyValuePair<TKey,TValue>> IEnumerable<T> IEnumerable
构造函数
DialogStateManager(DialogContext, DialogStateManagerConfiguration) |
初始化 DialogStateManager 类的新实例。 |
属性
Configuration |
获取或设置对话状态管理器的配置路径解析器和内存范围。 |
Count |
获取对话状态管理器中的内存范围数。 |
IsReadOnly |
获取一个值,该值指示对话状态管理器是否为只读。 |
Item[String] |
获取或设置具有指定键的元素。 |
Keys |
获取一个 ICollection<T> ,其中包含内存作用域的键。 |
Values |
获取一个 ICollection<T> ,其中包含内存作用域的值。 |
方法
显式接口实现
IEnumerable.GetEnumerator() |
DialogStateManager 管理内存作用域和 pathresolvers MemoryScopes 是命名的根级别对象,这些对象可以存在于 dialogcontext 中,也可以存在于关闭状态 PathResolvers 中,允许用于映射诸如 $foo -> dialog.foo 之类的内容的快捷方式行为。 |