IBotDataBag 介面
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
Bot 資料的屬性包。
public interface IBotDataBag
type IBotDataBag = interface
Public Interface IBotDataBag
屬性
Count |
取得 IBotDataBag 中所包含的索引鍵/值組數目。 |
方法
Clear() |
從資料包中移除所有值。 |
ContainsKey(String) |
檢查資料包是否包含具有指定索引鍵的值 |
RemoveValue(String) |
從 Bot 資料包中移除指定的金鑰。 |
SetValue<T>(String, T) |
將指定的索引鍵和值新增至 Bot 資料包。 |
TryGetValue<T>(String, T) |
取得與指定索引鍵關聯的值。 |
擴充方法
Get<T>(IBotDataBag, String) |
已淘汰.
Bot 資料的屬性包。 |
GetValue<T>(IBotDataBag, String) |
取得與指定索引鍵關聯的值。 |
GetValueOrDefault<T>(IBotDataBag, String, T) |
取得與指定索引鍵相關聯的值,如果找不到,則取得預設值。 |