Removes the first occurrence of the specified object from the model-state dictionary.
Namespace:  System.Web.Http.ModelBinding
Assembly:  System.Web.Http (in System.Web.Http.dll)
Syntax
'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)
public bool Remove(
    KeyValuePair<string, ModelState> item
)
public:
virtual bool Remove(
    KeyValuePair<String^, ModelState^> item
) sealed
abstract Remove : 
        item:KeyValuePair<string, ModelState> -> bool 
override Remove : 
        item:KeyValuePair<string, ModelState> -> bool 
public final function Remove(
    item : KeyValuePair<String, ModelState>
) : boolean
Parameters
- item
 Type: System.Collections.Generic.KeyValuePair<String, ModelState>
 The object to remove from the model-state dictionary.
Return Value
Type: System.Boolean
true 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.