Share via


Propriété DynamicValue.Item

 

Obtient ou définit l'élément enfant dans DynamicValue.

Espace de noms:   Microsoft.Activities
Assembly:  Microsoft.Activities (dans Microsoft.Activities.dll)

Liste de surcharge

Nom Description
System_CAPS_pubproperty Item[Int32]

Obtient ou définit un élément par ID.

System_CAPS_pubproperty Item[String]

Obtient ou définit un élément par nom.

Voir aussi

DynamicValue, classe
Microsoft.Activities, espace de noms

Retour au début

DynamicValue.Item, propriété (Int32)

Obtient ou définit un élément par ID.

Syntaxe

[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

Paramètres

Valeur de propriété

Type: Microsoft.Activities.DynamicValue

Élément avec l'ID spécifié.

Retour au début

DynamicValue.Item, propriété (String)

Obtient ou définit un élément par nom.

Syntaxe

[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

Paramètres

Valeur de propriété

Type: Microsoft.Activities.DynamicValue

Élément avec le nom spécifié.

Implémente

IDictionary<TKey, TValue>.Item[TKey]

Retour au début