共用方式為


Extensions.GetValue<T>(IBotDataBag, String) 方法

定義

取得與指定索引鍵關聯的值。

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。

例外狀況

適用於