DynamicValue.Remove Método

 

Remove um item de um DynamicValue.

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

Lista de sobrecargas

Nome Descrição
System_CAPS_pubmethod Remove(DynamicValue)

Remove um item de um DynamicValue.

System_CAPS_pubmethod Remove(KeyValuePair<String, DynamicValue>)

Remove um item de um DynamicValue.

System_CAPS_pubmethod Remove(String)

Remove um item de um DynamicValue usando a chave especificada.

Consulte também

Classe DynamicValue
Namespace Microsoft.Activities

Retornar ao topo

Método DynamicValue.Remove (DynamicValue)

Remove um item de um DynamicValue.

Sintaxe

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

Parâmetros

Valor de retorno

Type: System.Boolean

true se a operação for bem sucedida; caso contrário, false.

Implementações

ICollection<T>.Remove(T)

Retornar ao topo

Método DynamicValue.Remove (KeyValuePair<String, DynamicValue>)

Remove um item de um DynamicValue.

Sintaxe

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

Parâmetros

Valor de retorno

Type: System.Boolean

true se a operação for bem sucedida; caso contrário, false.

Implementações

ICollection<T>.Remove(T)

Retornar ao topo

Método DynamicValue.Remove (String)

Remove um item de um DynamicValue usando a chave especificada.

Sintaxe

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

Parâmetros

Valor de retorno

Type: System.Boolean

true se a operação for bem sucedida; caso contrário, false.

Implementações

IDictionary<TKey, TValue>.Remove(TKey)

Retornar ao topo