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