Share via


Méthode DynamicValue.Add

 

Ajoute DynamicValue en tant qu'élément enfant.

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

Liste de surcharge

Nom Description
System_CAPS_pubmethod Add(DynamicValue)

Ajoute DynamicValue en tant qu'élément enfant.

System_CAPS_pubmethod Add(KeyValuePair<String, DynamicValue>)

Ajoute DynamicValue en tant qu'élément enfant.

System_CAPS_pubmethod Add(String, DynamicValue)

Ajoute DynamicValue avec une clé et une valeur spécifiques.

Voir aussi

DynamicValue, classe
Microsoft.Activities, espace de noms

Retour au début

DynamicValue.Add, méthode (DynamicValue)

Ajoute DynamicValue en tant qu'élément enfant.

Syntaxe

public void Add(
    DynamicValue item
)
public:
virtual void Add(
    DynamicValue^ item
) sealed
abstract Add : 
        item:DynamicValue -> unit
override Add : 
        item:DynamicValue -> unit
Public Sub Add (
    item As DynamicValue
)

Paramètres

Implémente

ICollection<T>.Add(T)

Retour au début

DynamicValue.Add, méthode (KeyValuePair<String, DynamicValue>)

Ajoute DynamicValue en tant qu'élément enfant.

Syntaxe

public void Add(
    KeyValuePair<string, DynamicValue> item
)
public:
virtual void Add(
    KeyValuePair<String^, DynamicValue^> item
) sealed
abstract Add : 
        item:KeyValuePair<string, DynamicValue> -> unit
override Add : 
        item:KeyValuePair<string, DynamicValue> -> unit
Public Sub Add (
    item As KeyValuePair(Of String, DynamicValue)
)

Paramètres

Implémente

ICollection<T>.Add(T)

Retour au début

DynamicValue.Add, méthode (String, DynamicValue)

Ajoute DynamicValue avec une clé et une valeur spécifiques.

Syntaxe

public void Add(
    string key,
    DynamicValue value
)
public:
virtual void Add(
    String^ key,
    DynamicValue^ value
) sealed
abstract Add : 
        key:string *
        value:DynamicValue -> unit
override Add : 
        key:string *
        value:DynamicValue -> unit
Public Sub Add (
    key As String,
    value As DynamicValue
)

Paramètres

Implémente

IDictionary<TKey, TValue>.Add(TKey, TValue)

Retour au début