DynamicValue.Item Property

 

Gets or sets the child item in the DynamicValue.

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

Overload List

Name Description
System_CAPS_pubproperty Item[Int32]

Gets or sets an item by ID.

System_CAPS_pubproperty Item[String]

Gets or sets an item by name.

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top

DynamicValue.Item Property (Int32)

Gets or sets an item by ID.

Syntax

[DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)]
public DynamicValue this[
    int key
] { get; set; }
public:
[DebuggerBrowsableAttribute(DebuggerBrowsableState::Never)]
property DynamicValue^ default[
    int key
] {
    DynamicValue^ get(int key);
    void set(int key, DynamicValue^ value);
}
[<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>]
member Item : 
        key:int -> DynamicValue with get, set
<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>
Public Property Item (
    key As Integer
) As DynamicValue

Parameters

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.

Syntax

[DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)]
public DynamicValue this[
    string key
] { get; set; }
public:
[DebuggerBrowsableAttribute(DebuggerBrowsableState::Never)]
property DynamicValue^ default[
    String^ key
] {
    virtual DynamicValue^ get(String^ key) sealed;
    virtual void set(String^ key, DynamicValue^ value) sealed;
}
[<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>]
abstract Item : 
        key:string -> DynamicValue with get, set
[<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>]
override Item : 
        key:string -> DynamicValue with get, set
<DebuggerBrowsableAttribute(DebuggerBrowsableState.Never)>
Public Property Item (
    key As String
) As DynamicValue

Parameters

Property Value

Type: Microsoft.Activities.DynamicValue

The item with the specified name.

Implements

IDictionary<TKey, TValue>.Item[TKey]

Return to top