Proprietà DynamicValue.Item

 

Ottiene o imposta l'elemento figlio nell'oggetto DynamicValue.

Spazio dei nomi:   Microsoft.Activities
Assembly:  Microsoft.Activities (in Microsoft.Activities.dll)

Elenco di overload

Nome Descrizione
System_CAPS_pubproperty Item[Int32]

Ottiene o imposta un elemento in base all'ID.

System_CAPS_pubproperty Item[String]

Ottiene o imposta un elemento in base al nome.

Vedere anche

Classe DynamicValue
Spazio dei nomi Microsoft.Activities

Torna all'inizio

Proprietà DynamicValue.Item (Int32)

Ottiene o imposta un elemento in base all'ID.

Sintassi

[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

Parametri

Valore proprietà

Type: Microsoft.Activities.DynamicValue

Elemento con l'ID specificato.

Torna all'inizio

Proprietà DynamicValue.Item (String)

Ottiene o imposta un elemento in base al nome.

Sintassi

[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

Parametri

Valore proprietà

Type: Microsoft.Activities.DynamicValue

Elemento con il nome specificato.

Implementazioni

IDictionary<TKey, TValue>.Item[TKey]

Torna all'inizio