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(Of 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.

Public Function Remove (
	item As DynamicValue
) As Boolean

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(Of String, DynamicValue))

Removes an item from a DynamicValue.

Public Function Remove (
	item As KeyValuePair(Of String, DynamicValue)
) As Boolean

Parameters

item
Type: System.Collections.Generic.KeyValuePair(Of 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.

Public Function Remove (
	key As String
) As Boolean

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: