DynamicValue.ContainsKey Method (String)

 

Specifies whether the DynamicValue contains a specific key.

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

Syntax

public bool ContainsKey(
    string key
)
public:
virtual bool ContainsKey(
    String^ key
) sealed
abstract ContainsKey : 
        key:string -> bool
override ContainsKey : 
        key:string -> bool
Public Function ContainsKey (
    key As String
) As Boolean

Parameters

Return Value

Type: System.Boolean

true if the DynamicValue contains a specific key; otherwise, false.

Implements

IDictionary<TKey, TValue>.ContainsKey(TKey)

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top