ASP. NET Web API data validation

Source: Internet
Author: User

The first way is to validate each action individually.

 //POST api/values         Publichttpresponsemessage Post ([Frombody]userinfo UserInfo) {if(string. Isnullorwhitespace (Userinfo.gender)) {Modelstate.addmodelerror ("Gender","gender cannot be empty"); }            if(modelstate.isvalid) {//Do something with the product (not shown).                return Newhttpresponsemessage (Httpstatuscode.ok); }            Else            {                returnrequest.createerrorresponse (Httpstatuscode.badrequest, modelstate); }        } Public classUserInfo { Public intId {Get;Set; }        [Required] [Stringlength ( -, errormessage ="The name's too long or too short.", Minimumlength =4)]         Public stringName {Get;Set; } [RegularExpression (@"([2-5]\d)", errormessage ="age is between 20-50")]         Public intAge {Get;Set; }  Public stringGender {Get;Set; } }

The second is to do global validation:

 Public class Validationattribute:actionfilterattribute    {        publicoverridevoid  onactionexecuting (Httpactioncontext actioncontext)        {            if (!  ActionContext.ModelState.IsValid)            {                = ActionContext.Request.CreateErrorResponse (                    Httpstatuscode.badrequest,                    actioncontext.modelstate);}}}    WebApiConfig.cs   CONFIG. Filters.add (new Validationattribute ());

ASP. NET Web API data validation

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.