Share via


DataAnnotationsModelValidator.IsRequired Property

 

Gets a value that indicates whether model validation is required.

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

Syntax

public override bool IsRequired { get; }
public:
property bool IsRequired {
    virtual bool get() override;
}
override IsRequired : bool with get
Public Overrides ReadOnly Property IsRequired As Boolean

Property Value

Type: System.Boolean

true if model validation is required; otherwise, false.

Remarks

For more information model validation, see the entry Input Validation vs. Model Validation in ASP.NET MVC on Brad Wilson's blog.

See Also

DataAnnotationsModelValidator Class
System.Web.Mvc Namespace

Return to top