C#自定义特性的使用
2021/10/6 11:41:04
本文主要是介绍C#自定义特性的使用,对大家解决编程问题具有一定的参考价值,需要的程序猿们随着小编来一起学习吧!
ref: https://www.cnblogs.com/woadmin/p/9406970.html
特性类的使用过程:
第一步:定义一个特性类,定义一些成员来包含验证时需要的数据;
第二步:创建特性类实例;
创建一个特性类的实例,里面包含着验证某一个属性或者字段需要的数据。
将该实例关联到某个属性上面。
第三步:使用特性类实例
可以通过调用某个类型的GetProperties()方法,获取属性,
然后调用类型属性成员的GetCustomAttributes()方法,获取该属性关联的特性类实例,
然后使用查找到的特性类实例验证新建对象。
第一步:定义特性类
第二步:创建一个特性类的实例,并关联一个属性
public class Order { [StringLength("订单号", 6, MinLength = 3, ErrorMessage = "{0}的长度必须在{1}和{2}之间!")]//实例化一个特性类,关联到一个字段上面 public string OrderID { get; set; } }
第三步:使用特性类实例,进行验证
class Program { #region 使用特性类的过程 //验证过程 //1.通过映射,找到成员属性关联的特性类实例, //2.使用特性类实例对新对象的数据进行验证 //用特性类验证订单号长度 public static bool isIDLengthValid(int IDLength, MemberInfo member) { foreach (object attribute in member.GetCustomAttributes(true)) //2.通过映射,找到成员属性上关联的特性类实例, { if (attribute is StringLengthAttribute)//3.如果找到了限定长度的特性类对象,就用这个特性类对象验证该成员 { StringLengthAttribute attr = (StringLengthAttribute)attribute; if (IDLength < attr.MinLength || IDLength > attr.MaxLength) { string displayName = attr.DisplayName; int maxLength = attr.MaxLength; int minLength = attr.MinLength; string error = attr.ErrorMessage; Console.WriteLine(error, displayName,maxLength, minLength);//验证失败,提示错误 return false; } else return true; } } return false; } //验证订单对象是否规范 public static bool isOrderValid(Order order) { if (order == null) return false; foreach (PropertyInfo p in typeof(Order).GetProperties()) { if (isIDLengthValid(order.OrderID.Length, p))//1记录下新对象需要验证的数据, return true; } return false; } #endregion public static void Main() { Order order=new Order(); do { Console.WriteLine("请输入订单号:"); order.OrderID= Console.ReadLine(); } while (!isOrderValid(order)); Console.WriteLine("订单号输入正确,按任意键退出!"); Console.ReadKey(); } }
总结:特性类的实例里没有验证逻辑,只有验证用到的规范数据(比如字符串长度)、提示信息等。验证逻辑需要自己写。
这篇关于C#自定义特性的使用的文章就介绍到这儿,希望我们推荐的文章对大家有所帮助,也希望大家多多支持为之网!
- 2022-03-01沐雪多租宝商城源码从.NetCore3.1升级到.Net6的步骤
- 2024-12-06使用Microsoft.Extensions.AI在.NET中生成嵌入向量
- 2024-11-18微软研究:RAG系统的四个层次提升理解与回答能力
- 2024-11-15C#中怎么从PEM格式的证书中提取公钥?-icode9专业技术文章分享
- 2024-11-14云架构设计——如何用diagrams.net绘制专业的AWS架构图?
- 2024-05-08首个适配Visual Studio平台的国产智能编程助手CodeGeeX正式上线!C#程序员必备效率神器!
- 2024-03-30C#设计模式之十六迭代器模式(Iterator Pattern)【行为型】
- 2024-03-29c# datetime tryparse
- 2024-02-21list find index c#
- 2024-01-24convert toint32 c#