DynamicValue.Item Property

 

Gets or sets the child item in the DynamicValue.

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

NameDescription
System_CAPS_pubpropertyItem[Int32]

Gets or sets an item by ID.

System_CAPS_pubpropertyItem[String]

Gets or sets an item by name.

Return to top

DynamicValue.Item Property (Int32)

Gets or sets an item by ID.

[DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)]
public DynamicValue this[
	int key
] { get; set; }

Parameters

key
Type: System.Int32

The ID of the item.

Property Value

Type: Microsoft.Activities.DynamicValue

The item with the specified ID.

Return to top

DynamicValue.Item Property (String)

Gets or sets an item by name.

[DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)]
public DynamicValue this[
	string key
] { get; set; }

Parameters

key
Type: System.String

The name of the item.

Property Value

Type: Microsoft.Activities.DynamicValue

The item with the specified name.

Return to top
Show: