DynamicValue.Remove Method

 

Removes an item from a DynamicValue.

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

NameDescription
System_CAPS_pubmethodRemove(DynamicValue)

Removes an item from a DynamicValue.

System_CAPS_pubmethodRemove(KeyValuePair<String, DynamicValue>)

Removes an item from a DynamicValue.

System_CAPS_pubmethodRemove(String)

Removes an item from a DynamicValue using the specified key.

Return to top

DynamicValue.Remove Method (DynamicValue)

Removes an item from a DynamicValue.

abstract Remove : 
        item:DynamicValue -> bool
override Remove : 
        item:DynamicValue -> bool

Parameters

item
Type: Microsoft.Activities.DynamicValue

The item to remove.

Return Value

Type: System.Boolean

true if the operation succeeded; otherwise, false.

Return to top

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

Removes an item from a DynamicValue.

abstract Remove : 
        item:KeyValuePair<string, DynamicValue> -> bool
override Remove : 
        item:KeyValuePair<string, DynamicValue> -> bool

Parameters

item
Type: System.Collections.Generic.KeyValuePair<String, DynamicValue>

The item to be removed.

Return Value

Type: System.Boolean

true if the operation succeeded; otherwise, false.

Return to top

DynamicValue.Remove Method (String)

Removes an item from a DynamicValue using the specified key.

abstract Remove : 
        key:string -> bool
override Remove : 
        key:string -> bool

Parameters

key
Type: System.String

The key of the item to be removed.

Return Value

Type: System.Boolean

true if the operation succeeded; otherwise, false.

Return to top
Show: