BotState.GetPropertyValueAsync<T> 方法

定义

从此 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>

表示排队等待执行的工作的任务。

例外

turnContextpropertyNamenull

注解

如果任务成功,则结果包含 属性值,否则为默认 (T) 。

适用于