ValueProviderDictionary.Remove Method

 

Removes an item from the collection of value providers.

Namespace:   System.Web.Mvc
Assembly:  System.Web.Mvc (in System.Web.Mvc.dll)

NameDescription
System_CAPS_pubmethodRemove(KeyValuePair<String, ValueProviderResult>)

Removes the first occurrence of the specified item from the collection of value providers.

System_CAPS_pubmethodRemove(String)

Removes the element that has the specified key from the collection of value providers.

Return to top

ValueProviderDictionary.Remove Method (KeyValuePair<String, ValueProviderResult>)

Removes the first occurrence of the specified item from the collection of value providers.

public bool Remove(
	KeyValuePair<string, ValueProviderResult> item
)

Parameters

item
Type: System.Collections.Generic.KeyValuePair<StringValueProviderResult>

The object to remove from the ICollection<T> instance.

Return Value

Type: System.Boolean

true if item was successfully removed from the collection; otherwise, false. This method also returns false if item is not found in the collection.

Exception Condition
NotSupportedException

The ICollection<T> object is read-only.

Return to top

ValueProviderDictionary.Remove Method (String)

Removes the element that has the specified key from the collection of value providers.

public bool Remove(
	string key
)

Parameters

key
Type: System.String

The key of the element to remove.

Return Value

Type: System.Boolean

true if the element was successfully removed; otherwise, false. This method also returns false if key was not found in the collection.

Exception Condition
NotSupportedException

The IDictionary<TKey, TValue> object is read-only.

ArgumentNullException

key is null.

Return to top
Show: