DynamicValue.ContainsKey Method

Specifies whether the DynamicValue contains a specific key.

Namespace:  Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

'Declaration
Public Function ContainsKey ( _
	key As String _
) As Boolean
'Usage
Dim instance As DynamicValue 
Dim key As String 
Dim returnValue As Boolean 

returnValue = instance.ContainsKey(key)

Parameters

key
Type: System.String
The key to search.

Return Value

Type: System.Boolean
true if the DynamicValue contains a specific key; otherwise, false.

Implements

IDictionary(Of TKey, TValue).ContainsKey(TKey)

Community Additions

ADD
Show: