WebTestContext.ContainsKey 方法
判斷 WebTestContext 是否包含具有指定之索引鍵的項目。
命名空間: Microsoft.VisualStudio.TestTools.WebTesting
組件: Microsoft.VisualStudio.QualityTools.WebTestFramework (在 Microsoft.VisualStudio.QualityTools.WebTestFramework.dll 中)
語法
'宣告
Public Function ContainsKey ( _
key As String _
) As Boolean
public bool ContainsKey(
string key
)
public:
virtual bool ContainsKey(
String^ key
) sealed
abstract ContainsKey :
key:string -> bool
override ContainsKey :
key:string -> bool
public final function ContainsKey(
key : String
) : boolean
參數
- key
型別:System.String
要在集合中查詢的索引鍵。
傳回值
型別:System.Boolean
如果索引鍵出現在集合中,則為 true,否則為 false。
實作
IDictionary<TKey, TValue>.ContainsKey(TKey)
備註
這是很好的測試,可用來判斷在使用 Add 方法之前,KeyValuePair<TKey, TValue> 是否已存在於 WebTestContext 集合中。
.NET Framework 安全性
- 完全信任立即呼叫者。這個成員無法供部分信任的程式碼使用。如需詳細資訊,請參閱從部分受信任程式碼使用程式庫。