DynamicValue.Add Method

 

Adds a DynamicValue as a child item.

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

Overload List

Name Description
System_CAPS_pubmethod Add(DynamicValue)

Adds a DynamicValue as a child item.

System_CAPS_pubmethod Add(KeyValuePair<String, DynamicValue>)

Adds a DynamicValue as a child item.

System_CAPS_pubmethod Add(String, DynamicValue)

Adds a DynamicValue with specific key and value.

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top

DynamicValue.Add Method (DynamicValue)

Adds a DynamicValue as a child item.

Syntax

public void Add(
    DynamicValue item
)
public:
virtual void Add(
    DynamicValue^ item
) sealed
abstract Add : 
        item:DynamicValue -> unit
override Add : 
        item:DynamicValue -> unit
Public Sub Add (
    item As DynamicValue
)

Parameters

Implements

ICollection<T>.Add(T)

Return to top

DynamicValue.Add Method (KeyValuePair<String, DynamicValue>)

Adds a DynamicValue as a child item.

Syntax

public void Add(
    KeyValuePair<string, DynamicValue> item
)
public:
virtual void Add(
    KeyValuePair<String^, DynamicValue^> item
) sealed
abstract Add : 
        item:KeyValuePair<string, DynamicValue> -> unit
override Add : 
        item:KeyValuePair<string, DynamicValue> -> unit
Public Sub Add (
    item As KeyValuePair(Of String, DynamicValue)
)

Parameters

Implements

ICollection<T>.Add(T)

Return to top

DynamicValue.Add Method (String, DynamicValue)

Adds a DynamicValue with specific key and value.

Syntax

public void Add(
    string key,
    DynamicValue value
)
public:
virtual void Add(
    String^ key,
    DynamicValue^ value
) sealed
abstract Add : 
        key:string *
        value:DynamicValue -> unit
override Add : 
        key:string *
        value:DynamicValue -> unit
Public Sub Add (
    key As String,
    value As DynamicValue
)

Parameters

Implements

IDictionary<TKey, TValue>.Add(TKey, TValue)

Return to top