ModelBinderDictionary.Remove Method (KeyValuePair(Of Type, IModelBinder))
Removes the first occurrence of the specified element from the model binder dictionary.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
'Declaration Public Function Remove ( _ item As KeyValuePair(Of Type, IModelBinder) _ ) As Boolean 'Usage Dim instance As ModelBinderDictionary Dim item As KeyValuePair(Of Type, IModelBinder) Dim returnValue As Boolean returnValue = instance.Remove(item)
Parameters
- item
- Type: System.Collections.Generic.KeyValuePair(Of Type, IModelBinder)
The object to remove from the ICollection(Of T) object.
Return Value
Type: System.Booleantrue if item was successfully removed from the model binder dictionary; otherwise, false. This method also returns false if item is not found in the model binder dictionary.
Implements
ICollection(Of T).Remove(T)| Exception | Condition |
|---|---|
| NotSupportedException | The ICollection(Of T) object is read-only. |
Show: