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.
Initializes a new instance of the ModelStateDictionary class.
Overloads
ModelStateDictionary() |
Initializes a new instance of the ModelStateDictionary class. |
ModelStateDictionary(ModelStateDictionary) |
Initializes a new instance of the ModelStateDictionary class using an existing dictionary collection. |
ModelStateDictionary()
Initializes a new instance of the ModelStateDictionary class.
public:
ModelStateDictionary();
public ModelStateDictionary ();
Public Sub New ()
Applies to
ModelStateDictionary(ModelStateDictionary)
Initializes a new instance of the ModelStateDictionary class using an existing dictionary collection.
public:
ModelStateDictionary(System::Web::ModelBinding::ModelStateDictionary ^ dictionary);
public ModelStateDictionary (System.Web.ModelBinding.ModelStateDictionary dictionary);
new System.Web.ModelBinding.ModelStateDictionary : System.Web.ModelBinding.ModelStateDictionary -> System.Web.ModelBinding.ModelStateDictionary
Public Sub New (dictionary As ModelStateDictionary)
Parameters
- dictionary
- ModelStateDictionary
The dictionary.
Exceptions
The dictionary
parameter is null
.