码迷,mamicode.com
首页 > Web开发 > 详细

自定义Metadata验证属性

时间:2019-12-22 18:20:36      阅读:90      评论:0      收藏:0      [点我收藏+]

标签:names   属性   name   ann   mode   ace   erro   lin   pre   

一、定义


using
System; using System.Collections.Generic; using System.Linq; using System.Text; using System.ComponentModel.DataAnnotations; namespace HJ.BaseMetadata { /// <summary> /// 邮箱验证类 /// </summary> public class EmailAttribute :RegularExpressionAttribute { //验证邮箱 public EmailAttribute():base(@"^\w+([-+.]\w+)*@\w+([-.]\w+)*\.\w+([-.]\w+)*$") { } } }

 

二、调用

[Email(ErrorMessage="邮箱格式不正确")))]
        public string Email { get; set; }

自定义Metadata验证属性

标签:names   属性   name   ann   mode   ace   erro   lin   pre   

原文地址:https://www.cnblogs.com/qiupiaohujie/p/12080251.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!