DynamicValue.Remove Method

 

Removes an item from a DynamicValue.

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

Overload List

Name Description
System_CAPS_pubmethod Remove(DynamicValue)

Removes an item from a DynamicValue.

System_CAPS_pubmethod Remove(KeyValuePair<String, DynamicValue>)

Removes an item from a DynamicValue.

System_CAPS_pubmethod Remove(String)

Removes an item from a DynamicValue using the specified key.

See Also

DynamicValue Class
Microsoft.Activities Namespace

Return to top

DynamicValue.Remove Method (DynamicValue)

Removes an item from a DynamicValue.

Syntax

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

Parameters

Return Value

Type: System.Boolean

true if the operation succeeded; otherwise, false.

Implements

ICollection<T>.Remove(T)

Return to top

DynamicValue.Remove Method (KeyValuePair<String, DynamicValue>)

Removes an item from a DynamicValue.

Syntax

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

Parameters

Return Value

Type: System.Boolean

true if the operation succeeded; otherwise, false.

Implements

ICollection<T>.Remove(T)

Return to top

DynamicValue.Remove Method (String)

Removes an item from a DynamicValue using the specified key.

Syntax

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

Parameters

Return Value

Type: System.Boolean

true if the operation succeeded; otherwise, false.

Implements

IDictionary<TKey, TValue>.Remove(TKey)

Return to top