ModelStateDictionary::Remove Method

 

Removes an element from the model-state dictionary.

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

NameDescription
System_CAPS_pubmethodRemove(KeyValuePair<String^, ModelState^>)

Removes the first occurrence of the specified object from the model-state dictionary.

System_CAPS_pubmethodRemove(String^)

Removes the element that has the specified key from the model-state dictionary.

Return to top

ModelStateDictionary::Remove Method (KeyValuePair<String^, ModelState^>)

Removes the first occurrence of the specified object from the model-state dictionary.

public:
virtual bool Remove(
	KeyValuePair<String^, ModelState^> item
) sealed

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.

Exception Condition
NotSupportedException

The model-state dictionary is read-only.

Return to top

ModelStateDictionary::Remove Method (String^)

Removes the element that has the specified key from the model-state dictionary.

public:
virtual bool Remove(
	String^ key
) sealed

Parameters

key
Type: System::String^

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-state dictionary.

Exception Condition
NotSupportedException

The model-state dictionary is read-only.

ArgumentNullException

key is null.

Return to top
Show: