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.
Checks whether the collection contains a specific key.
Namespace: Microsoft.BusinessData.Runtime
Assembly: Microsoft.BusinessData (in Microsoft.BusinessData.dll)
Syntax
'Declaration
Public Function ContainsKey ( _
key As String _
) As Boolean
'Usage
Dim instance As DynamicType
Dim key As String
Dim returnValue As Boolean
returnValue = instance.ContainsKey(key)
public bool ContainsKey(
string key
)
Parameters
key
Type: System.StringThe key to search for.
Return Value
Type: System.Boolean
true if the key is found; otherwise, false.
Implements
IDictionary<TKey, TValue>.ContainsKey(TKey)