Note
Access to this page requires authorization. You can try signing in or changing directories.
Access to this page requires authorization. You can try changing directories.
Determines whether the WebTestContext contains the specified key/value pair.
Namespace: Microsoft.VisualStudio.TestTools.WebTesting
Assembly: Microsoft.VisualStudio.QualityTools.WebTestFramework (in Microsoft.VisualStudio.QualityTools.WebTestFramework.dll)
Syntax
'Declaration
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
Parameters
- keyValuePair
Type: System.Collections.Generic.KeyValuePair<String, Object>
An object
Return Value
Type: System.Boolean
true if the WebTestContext contains the specific KeyValuePair<TKey, TValue> object; otherwise, false.
Implements
Remarks
This is a good test to determine whether a KeyValuePair<TKey, TValue> already occurs in the WebTestContext collection before you use the Add method.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.