DynamicValue.Contains Method
Determines whether the DynamicValue contains a target item.
Namespace: Microsoft.Activities
Assembly: Microsoft.Activities (in Microsoft.Activities.dll)
Overload List
Name | Description | |
---|---|---|
Contains(DynamicValue) | Determines whether the DynamicValue contains a target item. |
|
Contains(KeyValuePair<String, DynamicValue>) | Determines whether the DynamicValue contains a target item. |
See Also
DynamicValue Class
Microsoft.Activities Namespace
Return to top
DynamicValue.Contains Method (DynamicValue)
Determines whether the DynamicValue contains a target item.
Syntax
public bool Contains(
DynamicValue item
)
public:
virtual bool Contains(
DynamicValue^ item
) sealed
abstract Contains :
item:DynamicValue -> bool
override Contains :
item:DynamicValue -> bool
Public Function Contains (
item As DynamicValue
) As Boolean
Parameters
item
Type: Microsoft.Activities.DynamicValueThe child item to search.
Return Value
Type: System.Boolean
true if the DynamicValue contains a target item; otherwise, false.
Implements
Return to top
DynamicValue.Contains Method (KeyValuePair<String, DynamicValue>)
Determines whether the DynamicValue contains a target item.
Syntax
public bool Contains(
KeyValuePair<string, DynamicValue> item
)
public:
virtual bool Contains(
KeyValuePair<String^, DynamicValue^> item
) sealed
abstract Contains :
item:KeyValuePair<string, DynamicValue> -> bool
override Contains :
item:KeyValuePair<string, DynamicValue> -> bool
Public Function Contains (
item As KeyValuePair(Of String, DynamicValue)
) As Boolean
Parameters
item
Type: System.Collections.Generic.KeyValuePair<String, DynamicValue>The child item to search.
Return Value
Type: System.Boolean
true if the DynamicValue contains a target item; otherwise, false.
Implements
Return to top