Use GetCustomAttribute : Attributes « Reflection « C# / C Sharp

Home
C# / C Sharp
1.2D Graphics
2.Class Interface
3.Collections Data Structure
4.Components
5.Data Types
6.Database ADO.net
7.Date Time
8.Design Patterns
9.Development Class
10.Event
11.File Stream
12.Generics
13.GUI Windows Form
14.Internationalization I18N
15.Language Basics
16.LINQ
17.Network
18.Office
19.Reflection
20.Regular Expressions
21.Security
22.Services Event
23.Thread
24.Web Services
25.Windows
26.Windows Presentation Foundation
27.XML
28.XML LINQ
C# Book
C# / C Sharp by API
C# / CSharp Tutorial
C# / CSharp Open Source
C# / C Sharp » Reflection » AttributesScreenshots 
Use GetCustomAttribute
   

using System;
using System.Reflection;


class Starter {

    static void Main() {
        Type tObj = typeof(Starter);
        MethodInfo method = tObj.GetMethod("AMethod");
        Attribute attrib = Attribute.GetCustomAttribute(method, typeof(ObsoleteAttribute));
        ObsoleteAttribute obsolete = (ObsoleteAttribute)attrib;
        Console.WriteLine("Obsolete Message: " + obsolete.Message);
    }

    [Obsolete("Deprecated function."false)]
    public void AMethod() {
    }
}

   
    
  
Related examples in the same category
1.Attributes:Reflecting on AttributesAttributes:Reflecting on Attributes
2.Displaying attributes for a class.
3.Specifies flags that describe the attributes of a field.Specifies flags that describe the attributes of a field.
4.Defines a company name custom attribute for an assembly manifest.
5.Defines a copyright custom attribute for an assembly manifest.
6.Represents the base class for custom attributes.
7.Retrieves a custom attribute applied to a specified assembly.
8.Retrieves a custom attribute applied to a member of a type.
9.Get a custom attribute applied to a member of a type.
10.Get an array of the custom attributes applied to an assembly. A parameter specifies the assembly.
11.Get an array of the custom attributes applied to a method parameter.
12.Attribute.IsDefaultAttribute
13.Attribute.IsDefined
14.Determines whether any custom attributes are applied to an assembly.
15.Determines whether any custom attributes are applied to a member of a type.
16.Determines whether any custom attributes of a specified type are applied to a module.
17.Determines whether any custom attributes are applied to a method parameter.
18.Indicates to compilers that a method call or attribute should be ignored unless a specified conditional compilation symbol is defined.
w__w_w._j_a_va2s___.c___om__ | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.