ModelStateDictionary.GetValidationState(String) Method
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.
Returns ModelValidationState for the key
.
public:
Microsoft::AspNetCore::Mvc::ModelBinding::ModelValidationState GetValidationState(System::String ^ key);
public Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState GetValidationState (string key);
member this.GetValidationState : string -> Microsoft.AspNetCore.Mvc.ModelBinding.ModelValidationState
Public Function GetValidationState (key As String) As ModelValidationState
Parameters
- key
- String
The key to look up model state errors for.
Returns
Returns Unvalidated if no entry is found for the specified key, Invalid if an instance is found with one or more model state errors; Valid otherwise.