共用方式為


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

參數

傳回值

型別:System.Boolean
如果 WebTestContext 包含特定的 KeyValuePair<TKey, TValue> 物件,則為 true,否則為 false。

實作

ICollection<T>.Contains(T)

備註

這是很好的測試,可用來判斷在使用 Add 方法之前,KeyValuePair<TKey, TValue> 是否已存在於 WebTestContext 集合中。

.NET Framework 安全性

請參閱

參考

WebTestContext 類別

Microsoft.VisualStudio.TestTools.WebTesting 命名空間