Extensions.GetValue<T>(IBotDataBag, String) 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
取得與指定索引鍵關聯的值。
public static T GetValue<T> (this Microsoft.Bot.Builder.Dialogs.IBotDataBag bag, string key);
static member GetValue : Microsoft.Bot.Builder.Dialogs.IBotDataBag * string -> 'T
<Extension()>
Public Function GetValue(Of T) (bag As IBotDataBag, key As String) As T
類型參數
- T
要取得的值型別。
參數
- bag
- IBotDataBag
Bot 資料包。
- key
- String
要取得或設定之值的索引鍵。
傳回
T
與指定之索引鍵關聯的值。 如果找不到指定的索引鍵,取得作業會擲回 KeyNotFoundException。