DynamicValue.Add Method

 

Adds a DynamicValue as a child item.

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

NameDescription
System_CAPS_pubmethodAdd(DynamicValue)

Adds a DynamicValue as a child item.

System_CAPS_pubmethodAdd(KeyValuePair(Of String, DynamicValue))

Adds a DynamicValue as a child item.

System_CAPS_pubmethodAdd(String, DynamicValue)

Adds a DynamicValue with specific key and value.

Return to top

DynamicValue.Add Method (DynamicValue)

Adds a DynamicValue as a child item.

Public Sub Add (
	item As DynamicValue
)

Parameters

item
Type: Microsoft.Activities.DynamicValue

The DynamicValue to be added.

Return to top

DynamicValue.Add Method (KeyValuePair(Of String, DynamicValue))

Adds a DynamicValue as a child item.

Public Sub Add (
	item As KeyValuePair(Of String, DynamicValue)
)

Parameters

item
Type: System.Collections.Generic.KeyValuePair(Of String, DynamicValue)

The DynamicValue to be added.

Return to top

DynamicValue.Add Method (String, DynamicValue)

Adds a DynamicValue with specific key and value.

Public Sub Add (
	key As String,
	value As DynamicValue
)

Parameters

key
Type: System.String

The object key.

value
Type: Microsoft.Activities.DynamicValue

The object value.

Return to top
Show: