ScopeStorageDictionary.Remove Method

Definition

Overloads

Remove(KeyValuePair<Object,Object>)

Removes the specified key/value pair from the concatenated ScopeStorageDictionary and BaseScope objects.

Remove(Object)

Removes the value that has the specified key from the concatenated ScopeStorageDictionary and BaseScope objects.

Remove(KeyValuePair<Object,Object>)

Removes the specified key/value pair from the concatenated ScopeStorageDictionary and BaseScope objects.

public virtual bool Remove (System.Collections.Generic.KeyValuePair<object,object> item);
abstract member Remove : System.Collections.Generic.KeyValuePair<obj, obj> -> bool
override this.Remove : System.Collections.Generic.KeyValuePair<obj, obj> -> bool
Public Overridable Function Remove (item As KeyValuePair(Of Object, Object)) As Boolean

Parameters

item
KeyValuePair<Object,Object>

The key/value pair.

Returns

true if the key/value pair is removed, or false if item is not found in the concatenated ScopeStorageDictionary and BaseScope objects.

Implements

Applies to

Remove(Object)

Removes the value that has the specified key from the concatenated ScopeStorageDictionary and BaseScope objects.

public virtual bool Remove (object key);
abstract member Remove : obj -> bool
override this.Remove : obj -> bool
Public Overridable Function Remove (key As Object) As Boolean

Parameters

key
Object

The key.

Returns

true if the key/value pair is removed, or false if key is not found in the concatenated ScopeStorageDictionary and BaseScope objects.

Implements

Applies to