ValueProviderDictionary.Remove Method (KeyValuePair(Of String, ValueProviderResult))

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

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

'Declaration
Public Function Remove ( _
	item As KeyValuePair(Of String, ValueProviderResult) _
) As Boolean
'Usage
Dim instance As ValueProviderDictionary 
Dim item As KeyValuePair(Of String, ValueProviderResult)
Dim returnValue As Boolean 

returnValue = instance.Remove(item)

Parameters

item
Type: System.Collections.Generic.KeyValuePair(Of String, ValueProviderResult)

The object to remove from the ICollection(Of 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.

Implements

ICollection(Of T).Remove(T)

ExceptionCondition
NotSupportedException

The ICollection(Of T) object is read-only.

Show: