ModelStateDictionary.Add Method (String, ModelState)

Adds an element that has the specified key and value to the model-state dictionary.

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

'Declaration
Public Sub Add ( _
	key As String, _
	value As ModelState _
)
'Usage
Dim instance As ModelStateDictionary 
Dim key As String 
Dim value As ModelState

instance.Add(key, value)

Parameters

key
Type: System.String

The key of the element to add.

value
Type: System.Web.Mvc.ModelState

The value of the element to add.

Implements

IDictionary(Of TKey, TValue).Add(TKey, TValue)

ExceptionCondition
NotSupportedException

The model-state dictionary is read-only.

ArgumentNullException

key is Nothing.

ArgumentException

An element that has the specified key already occurs in the model-state dictionary.

Show: