IStatePropertyAccessor<T> 接口

定义

接口,用于定义如何从属性源(如 ) BotState获取数据的方法。

public interface IStatePropertyAccessor<T> : Microsoft.Bot.Builder.IStatePropertyInfo
type IStatePropertyAccessor<'T> = interface
    interface IStatePropertyInfo
Public Interface IStatePropertyAccessor(Of T)
Implements IStatePropertyInfo

类型参数

T

属性的类型。

实现

属性

Name

获取属性的名称。

(继承自 IStatePropertyInfo)

方法

DeleteAsync(ITurnContext, CancellationToken)

从源中删除 属性。

GetAsync(ITurnContext, Func<T>, CancellationToken)

从源获取属性值。

SetAsync(ITurnContext, T, CancellationToken)

在源上设置属性值。

适用于