ModelStateDictionary Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Overloads
ModelStateDictionary() |
Initializes a new instance of the ModelStateDictionary class. |
ModelStateDictionary(ModelStateDictionary) |
Initializes a new instance of the ModelStateDictionary class by using values that are copied from the specified model-state dictionary. |
ModelStateDictionary()
Initializes a new instance of the ModelStateDictionary class.
public ModelStateDictionary ();
Public Sub New ()
Applies to
ModelStateDictionary(ModelStateDictionary)
Initializes a new instance of the ModelStateDictionary class by using values that are copied from the specified model-state dictionary.
public ModelStateDictionary (System.Web.Mvc.ModelStateDictionary dictionary);
new System.Web.Mvc.ModelStateDictionary : System.Web.Mvc.ModelStateDictionary -> System.Web.Mvc.ModelStateDictionary
Public Sub New (dictionary As ModelStateDictionary)
Parameters
- dictionary
- ModelStateDictionary
The model-state dictionary.
Exceptions
The dictionary
parameter is null.