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