DynamicType.ContainsKey Method
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)