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
System_CAPS_pubmethod Contains(DynamicValue)

Determines whether the DynamicValue contains a target item.

System_CAPS_pubmethod 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

Return Value

Type: System.Boolean

true if the DynamicValue contains a target item; otherwise, false.

Implements

ICollection<T>.Contains(T)

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

Return Value

Type: System.Boolean

true if the DynamicValue contains a target item; otherwise, false.

Implements

ICollection<T>.Contains(T)

Return to top