DialogStateManager 类

定义

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
实现

构造函数

DialogStateManager(DialogContext, DialogStateManagerConfiguration)

初始化 DialogStateManager 类的新实例。

属性

Configuration

获取或设置对话状态管理器的配置路径解析器和内存范围。

Count

获取对话状态管理器中的内存范围数。

IsReadOnly

获取一个值,该值指示对话状态管理器是否为只读。

Item[String]

获取或设置具有指定键的元素。

Keys

获取一个 ICollection<T> ,其中包含内存作用域的键。

Values

获取一个 ICollection<T> ,其中包含内存作用域的值。

方法

Add(KeyValuePair<String,Object>)

将项添加到对话状态管理器。

Add(String, Object)

将元素添加到对话状态管理器。

AnyPathChanged(UInt32, IEnumerable<String>)

查看自水印以来是否有任何路径更改。

Clear()

从对话状态管理器中删除所有项。

Contains(KeyValuePair<String,Object>)

确定对话状态管理器是否包含特定值。

ContainsKey(String)

确定对话状态管理器是否包含具有指定键的元素。

CopyTo(KeyValuePair<String,Object>[], Int32)

将对话状态管理器的元素复制到从特定索引开始的数组。

DeleteScopesMemoryAsync(String, CancellationToken)

删除作用域的内存。

GetBoolValue(String, Boolean)

使用路径表达式从内存中获取布尔值。

GetEnumerator()

返回一个循环访问集合的枚举器。

GetIntValue(String, Int32)

使用路径表达式从内存中获取 int 值。

GetMemoryScope(String)

按名称获取 MemoryScope。

GetMemorySnapshot()

获取适合日志记录的所有内存范围。

GetStringValue(String, String)

使用路径表达式从内存中获取字符串值。

GetValue<T>(String, Func<T>)

使用路径表达式从内存中获取值 (注意:这始终返回值) 的克隆。

LoadAllScopesAsync(CancellationToken)

加载所有范围。

Remove(KeyValuePair<String,Object>)

从对话状态管理器中删除特定对象的第一个匹配项。

Remove(String)

从对话状态管理器中删除具有指定键的 元素。

RemoveValue(String)

从内存中删除属性。

ResolveMemoryScope(String, String)

ResolveMemoryScope 将查找的 MemoryScope 并返回剩余路径。

SaveAllChangesAsync(CancellationToken)

保存所有范围的所有更改。

SetValue(String, Object)

将内存设置为值。

TrackPaths(IEnumerable<String>)

跟踪更改特定路径的时间。

TransformPath(String)

使用已注册的 PathTransformers 转换路径。

TryGetValue(String, Object)

获取与指定键关联的值。

TryGetValue<T>(String, T)

使用路径表达式从内存中获取值 (注意:这始终返回值) 的克隆。

Version()

版本帮助调用方标识更新并决定缓存与否。

显式接口实现

IEnumerable.GetEnumerator()

DialogStateManager 管理内存作用域和 pathresolvers MemoryScopes 是命名的根级别对象,这些对象可以存在于 dialogcontext 中,也可以存在于关闭状态 PathResolvers 中,允许用于映射诸如 $foo -> dialog.foo 之类的内容的快捷方式行为。

适用于