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.

public:
virtual bool Remove(
	DynamicValue^ item
) sealed

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.

public:
virtual bool Remove(
	KeyValuePair<String^, DynamicValue^> item
) sealed

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.

public:
virtual bool Remove(
	String^ key
) sealed

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: