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.

public:
[DebuggerBrowsableAttribute(DebuggerBrowsableState::Never)]
property DynamicValue^ default[
	int key
] {
	DynamicValue^ get(int key);
	void set(int key, DynamicValue^ value);
}

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.

public:
[DebuggerBrowsableAttribute(DebuggerBrowsableState::Never)]
property DynamicValue^ default[
	String^ key
] {
	virtual DynamicValue^ get(String^ key) sealed;
	virtual void set(String^ key, DynamicValue^ value) sealed;
}

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: