Share via


Méthode DynamicValue.Remove

 

Supprime un élément de DynamicValue.

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

Liste de surcharge

Nom Description
System_CAPS_pubmethod Remove(DynamicValue)

Supprime un élément de DynamicValue.

System_CAPS_pubmethod Remove(KeyValuePair<String, DynamicValue>)

Supprime un élément de DynamicValue.

System_CAPS_pubmethod Remove(String)

Supprime un élément d'une DynamicValue à l'aide de la clé spécifiée.

Voir aussi

DynamicValue, classe
Microsoft.Activities, espace de noms

Retour au début

DynamicValue.Remove, méthode (DynamicValue)

Supprime un élément de DynamicValue.

Syntaxe

public bool Remove(
    DynamicValue item
)
public:
virtual bool Remove(
    DynamicValue^ item
) sealed
abstract Remove : 
        item:DynamicValue -> bool
override Remove : 
        item:DynamicValue -> bool
Public Function Remove (
    item As DynamicValue
) As Boolean

Paramètres

Valeur de retour

Type: System.Boolean

true si l'opération réussit ; sinon, false.

Implémente

ICollection<T>.Remove(T)

Retour au début

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

Supprime un élément de DynamicValue.

Syntaxe

public bool Remove(
    KeyValuePair<string, DynamicValue> item
)
public:
virtual bool Remove(
    KeyValuePair<String^, DynamicValue^> item
) sealed
abstract Remove : 
        item:KeyValuePair<string, DynamicValue> -> bool
override Remove : 
        item:KeyValuePair<string, DynamicValue> -> bool
Public Function Remove (
    item As KeyValuePair(Of String, DynamicValue)
) As Boolean

Paramètres

Valeur de retour

Type: System.Boolean

true si l'opération réussit ; sinon, false.

Implémente

ICollection<T>.Remove(T)

Retour au début

DynamicValue.Remove, méthode (String)

Supprime un élément d'une DynamicValue à l'aide de la clé spécifiée.

Syntaxe

public bool Remove(
    string key
)
public:
virtual bool Remove(
    String^ key
) sealed
abstract Remove : 
        key:string -> bool
override Remove : 
        key:string -> bool
Public Function Remove (
    key As String
) As Boolean

Paramètres

Valeur de retour

Type: System.Boolean

true si l'opération réussit ; sinon, false.

Implémente

IDictionary<TKey, TValue>.Remove(TKey)

Retour au début