BotState.GetPropertyValueAsync<T> 方法
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
从此 BotState的状态缓存中获取属性的值。
protected System.Threading.Tasks.Task<T> GetPropertyValueAsync<T> (Microsoft.Bot.Builder.ITurnContext turnContext, string propertyName, System.Threading.CancellationToken cancellationToken = default);
member this.GetPropertyValueAsync : Microsoft.Bot.Builder.ITurnContext * string * System.Threading.CancellationToken -> System.Threading.Tasks.Task<'T>
Protected Function GetPropertyValueAsync(Of T) (turnContext As ITurnContext, propertyName As String, Optional cancellationToken As CancellationToken = Nothing) As Task(Of T)
类型参数
- T
属性的值类型。
参数
- turnContext
- ITurnContext
此轮次的上下文对象。
- propertyName
- String
属性的名称。
- cancellationToken
- CancellationToken
可由其他对象或线程用以接收取消通知的取消标记。
返回
Task<T>
表示排队等待执行的工作的任务。
例外
turnContext
或 propertyName
为 null
。
注解
如果任务成功,则结果包含 属性值,否则为默认 (T) 。