当前位置:  编程技术>.net/c#/asp.net

C#属性(Attribute)用法实例解析

    来源: 互联网  发布时间:2014-11-02

    本文导语:  属性(Attribute)是C#程序设计中非常重要的一个技术,应用范围广泛,用法灵活多变。本文就以实例形式分析了C#中属性的应用。具体入戏: 一、运用范围 程序集,模块,类型(类,结构,枚举,接口,委托),字段,方法(含...

属性(Attribute)是C#程序设计中非常重要的一个技术,应用范围广泛,用法灵活多变。本文就以实例形式分析了C#中属性的应用。具体入戏:

一、运用范围

程序集,模块,类型(类,结构,枚举,接口,委托),字段,方法(含构造),方法,参数,方法返回值,属性(property),Attribute

[AttributeUsage(AttributeTargets.All)]
  public class TestAttribute : Attribute
  {
  }
  [TestAttribute]//结构
  public struct TestStruct { }
  
  [TestAttribute]//枚举
  public enum TestEnum { }


  [TestAttribute]//类上
  public class TestClass
  {
    [TestAttribute]
    public TestClass() { }
    
    [TestAttribute]//字段
    private string _testField;

    [TestAttribute]//属性
    public string TestProperty { get; set; }

    [TestAttribute]//方法上
    [return: TestAttribute]//定义返回值的写法
    public string TestMethod([TestAttribute] string testParam)//参数上
    {
      throw new NotImplementedException();
    }
  }

这里我们给出了除了程序集和模块以外的常用的Atrribute的定义。 

二、自定义Attribute

为了符合“公共语言规范(CLS)”的要求,所有的自定义的Attribute都必须继承System.Attribute。

第一步:自定义一个检查字符串长度的Attribute

[AttributeUsage(AttributeTargets.Property)]
public class StringLengthAttribute : Attribute
{
  private int _maximumLength;
  public StringLengthAttribute(int maximumLength)
  {
    _maximumLength = maximumLength;
  }

  public int MaximumLength
  {
    get { return _maximumLength; }
  }
}

AttributeUsage这个系统提供的一个Attribute,作用来限定自定义的Attribute作用域,这里我们只允许这个Attribute运用在Property上,内建一个带参的构造器,让外部传入要求的最大长度。

第二步:创建一个实体类来运行我们自定义的属性

public class People
{
  [StringLength(8)]
  public string Name { get; set; }

  [StringLength(15)]
  public string Description { get; set; }
}

定义了两个字符串字段Name和Description, Name要求最大长度为8个,Description要求最大长度为15.

第三步:创建验证的类

public class ValidationModel
{

  public void Validate(object obj)
  {
    var t = obj.GetType();

    //由于我们只在Property设置了Attibute,所以先获取Property
    var properties = t.GetProperties();
    foreach (var property in properties)
    {

      //这里只做一个stringlength的验证,这里如果要做很多验证,需要好好设计一下,千万不要用if elseif去链接
      //会非常难于维护,类似这样的开源项目很多,有兴趣可以去看源码。
      if (!property.IsDefined(typeof(StringLengthAttribute), false)) continue;

      var attributes = property.GetCustomAttributes();
      foreach (var attribute in attributes)
      {
        //这里的MaximumLength 最好用常量去做
        var maxinumLength = (int)attribute.GetType().
          GetProperty("MaximumLength").
          GetValue(attribute);

        //获取属性的值
        var propertyValue = property.GetValue(obj) as string;
        if (propertyValue == null)
          throw new Exception("exception info");//这里可以自定义,也可以用具体系统异常类

        if (propertyValue.Length > maxinumLength)
          throw new Exception(string.Format("属性{0}的值{1}的长度超过了{2}", property.Name, propertyValue, maxinumLength));
      }
    }

  }
}

这里用到了反射,因为Attribute一般都会和反射一起使用,这里验证了字符串长度是否超过所要求的,如果超过了则会抛出异常

private static void Main(string[] args)
{
    var people = new People()
    {
      Name = "qweasdzxcasdqweasdzxc",
      Description = "description"
    };
    try
    {
      new ValidationModel().Validate(people);
    }
    catch (Exception ex)
    {
      Console.WriteLine(ex.Message);
    }
    Console.ReadLine();
}

希望本文所述实例对大家的C#程序设计能有一定的帮助作用。


    
 
 

您可能感兴趣的文章:

  • C#利用反射来判断对象是否包含某个属性的实现方法
  • C#关于类的只读只写属性实例分析
  • C#类中属性与成员变量的使用小结
  • C#中属性和成员变量的区别说明
  • C#代码获取属性名的例子
  • C# 获取属性名的方法
  • c#中使用自动属性减少代码输入量
  • C#反射技术(读取和设置类的属性)的例子
  • c#(asp.net)访问母版页的控件、属性、方法介绍
  • C# Dynamic关键字之:调用属性、方法、字段的实现方法
  • C#类学习笔记之C#类的属性
  • 深入理解C#索引器(一种支持参数的属性)与属性的对比
  • C#正则表达式获取下拉菜单(select)的相关属性值
  • C#获得文件属性信息的实现方法
  • C#通过XML节点属性/属性值读取写入XML操作代码实例
  • C#类中的属性使用总结(详解类的属性)
  • C#实现ProperTyGrid自定义属性的方法
  • C#学习笔记之定义类的属性
  • c# Rank属性与GetUpperBound方法的深入分析
  • docker中文入门学习手册 iis7站长之家
  • JQuery 判断某个属性是否存在hasAttr用法
  • JS与jquery自定义属性用法
  • css white-space:nowrap属性用法(可以强制文字不换行输出)
  • Jquery 属性attr()用法教程
  • DOM属性用法速查手册第1/4页
  • jquery属性选择器用法
  • android开发教程之自定义属性用法详解
  •  
    本站(WWW.)旨在分享和传播互联网科技相关的资讯和技术,将尽最大努力为读者提供更好的信息聚合和浏览方式。
    本站(WWW.)站内文章除注明原创外,均为转载、整理或搜集自网络。欢迎任何形式的转载,转载请注明出处。












  • 相关文章推荐
  • 请问Attribute和Property是否都翻译为属性?
  • Linux常用命令介绍:更改所属用户群组或档案属性
  • 怎样将linux系统底下一个文件夹的只读属性改为可读写的属性?
  • HTML <area> 标签的shape属性和coords属性详细介绍
  • python 基础学习第二弹 类属性和实例属性
  • CSS3 box-flex-group 属性
  • qt大侠进,如何做类似于VB属性编辑器或Qt designer的属性编辑器那种东东?
  • CSS3 rotation 属性
  • CSS属性 - white-space 空白属性使用说明
  • CSS empty-cells 属性
  • 为什么我动态的写了一个属性文件之后,读出来的还是原来的属性文件呢?
  • CSS3 grid-rows 属性
  • jquery修改属性值实例代码(设置属性值)
  • CSS border-spacing 属性
  • js正则表达式之input属性($_)RegExp对象属性介绍
  • HTML 文档属性介绍
  • qt问题,请教如何做类似于VB属性编辑器或者qt designer的属性编辑器那样的东东?
  • CSS table-layout 属性
  • 使用jQuery设置disabled属性与移除disabled属性
  • CSS counter-increment 属性
  • 读取属性一般用ResourceBundle,保存属性用什么呢?
  • CSS caption-side 属性
  • jquery根据属性和index来查找属性值并操作


  • 站内导航:


    特别声明:169IT网站部分信息来自互联网,如果侵犯您的权利,请及时告知,本站将立即删除!

    ©2012-2021,,E-mail:www_#163.com(请将#改为@)

    浙ICP备11055608号-3