DynamicValue.Item Propriedade

 

Obtém ou define o item filho no DynamicValue.

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

Lista de sobrecargas

Nome Descrição
System_CAPS_pubproperty Item[Int32]

Obtém ou define um item por ID.

System_CAPS_pubproperty Item[String]

Obtém ou define um item pelo nome.

Consulte também

Classe DynamicValue
Namespace Microsoft.Activities

Retornar ao topo

Propriedade DynamicValue.Item (Int32)

Obtém ou define um item por ID.

Sintaxe

[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

Parâmetros

Valor de propriedade

Type: Microsoft.Activities.DynamicValue

O item com o ID especificado.

Retornar ao topo

Propriedade DynamicValue.Item (String)

Obtém ou define um item pelo nome.

Sintaxe

[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

Parâmetros

Valor de propriedade

Type: Microsoft.Activities.DynamicValue

O item com o nome especificado.

Implementações

IDictionary<TKey, TValue>.Item[TKey]

Retornar ao topo