Controller::ValidateModel Method
Validates the specified model instance.
Assembly: System.Web.Mvc (in System.Web.Mvc.dll)
| Name | Description | |
|---|---|---|
![]() | ValidateModel(Object^) | Validates the specified model instance. |
![]() | ValidateModel(Object^, String^) | Validates the specified model instance using an HTML prefix. |
Controller::ValidateModel Method (Object^)
Validates the specified model instance.
Parameters
- model
-
Type:
System::Object^
The model to validate.
When a model is being validated, all validators for all properties are run if at least one form input is bound to a model property.
The ValidateModel is like the method TryValidateModel except that the TryValidateModel method does not throw an InvalidOperationException exception if the model validation fails.
Controller::ValidateModel Method (Object^, String^)
Validates the specified model instance using an HTML prefix.
Parameters
- model
-
Type:
System::Object^
The model to validate.
- prefix
-
Type:
System::String^
The prefix to use when looking up values in the model provider.
When a model is being validated, all validators for all properties are run if at least one form input is bound to a model property.
The ValidateModel is like the method TryValidateModel except that the TryValidateModel method does not throw an InvalidOperationException exception if the model validation fails.
