ModelBinderDictionary.Remove Method (Type)
Removes the element that has the specified key from the model binder dictionary.
Namespace: System.Web.Mvc
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
Syntax
'Declaration
Public Function Remove ( _
key As Type _
) As Boolean
public bool Remove(
Type key
)
public:
virtual bool Remove(
Type^ key
) sealed
Parameters
- key
Type: System.Type
The key of the element to remove.
Return Value
Type: System.Boolean
true if the element is successfully removed; otherwise, false. This method also returns false if key was not found in the model binder dictionary.
Implements
IDictionary<TKey, TValue>.Remove(TKey)
Exceptions
Exception | Condition |
---|---|
NotSupportedException | The IDictionary<TKey, TValue> object is read-only. |
ArgumentNullException | key is null. |