Click here to Skip to main content
15,885,032 members
Articles / .NET

Forcing Derived Type to Apply Custom Attribute

Rate me:
Please Sign up or sign in to vote.
1.00/5 (1 vote)
28 Jan 2013CPOL1 min read 7K   1   2
Forcing Derived type to apply custom attribute

Introduction

This article illustrates options to force attributes on derived types.

Background

In .NET eco system, Attributes are not inheritable. This means any attribute applied on base class are not applied/inherited on derived class. This article looks at different options available to force the attributes on derived types at compile time and at run time.

Approaches

There are two approaches (with different intentions)

  1. Forcing at run time: The base class constructor code will check for the presence of attribute and throw error runtime if attribute is not changed.
  2. Forcing at compile time: Using ObsoleteAttribute, the Mandatory attribute will be reflected at compile time and will raise the error. This information is taken from this question on Stackoverflow.com.

Using the Code

Forcing Attribute at Run Time

The IsAssignableFrom takes care of any attribute that derives from CustomAttribute.

  1. Create a Custom Attribute:
    C#
    class CustomAttribute : System.Attribute { }  
  2. In the constructor of base, check the attribute:
    C#
    publicBase() { CheckCustomAttribute(); }
    
  3. If class type is base, skip the attribute check:
    C#
    if (!(this.GetType() == typeof(Base)))
    
  4. If class is derived type, check whether attribute exists or not.
    C#
    var attr = System.Attribute.GetCustomAttributes(
                             this.GetType())
                            .SingleOrDefault(t => typeof(CustomAttribute)
                            .IsAssignableFrom(t.GetType()));
  5. Throw error if attribute does not exist.
    C#
    if (attr == null)
     {
         throw new Exception(String.Format(
                             "Derived class {0} doesnot apply {1} attribute",
                             this.GetType().Name,
                             typeof(CustomAttribute).Name));
     }

Forcing Attribute at Compile Time

There is a special attribute ObsoleteAttribute. It is sealed so cannot be subclassed. The C# compiler has special handling for this attribute.

However, to use Obsolete attribute rather awkwardly, It can be applied to a custom attribute. Then applying that custom attribute (on class/structs) will force compiler to show error.

  1. Create a custom attribute:
    C#
    public class MandatoryAttribute : Attribute{}
  2. Decorate the custom attribute with ObsoleteAttribute:
    C#
    [Obsolete("MandatoryAttribute is required", true)]
    public class MandatoryAttribute : Attribute{}
  3. Apply Custom attribute to class/member to get notification (as compile time error) on any type:
    C#
    //[MandatoryAttribute]
    public class Base
    {
     //[MandatoryAttribute]
     public void SayHello() {}
    }

Uncommenting MandatoryAttribute raises awkward compile time error.

This is awkward because the error message is like:

"MandatoryAttribute’ is obsolete: ‘MandatoryAttribute is required’    
<filename>    <projectname>’"

Download the source code from src link for this post.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
Software Developer (Senior)
India India
Software Engineer based out in Noida.

Technology skillset – .NET, WPF, WCF, LINQ, XAML.

Started blogging on http://1wpf.wordpress.com/


Stackoverflow Profile -> http://stackoverflow.com/users/649524/tilak

Comments and Discussions

 
GeneralMy vote of 1 Pin
Matej Hlatky29-Jan-13 3:56
professionalMatej Hlatky29-Jan-13 3:56 
QuestionI don't get this Pin
John Brett29-Jan-13 1:30
John Brett29-Jan-13 1:30 

General General    News News    Suggestion Suggestion    Question Question    Bug Bug    Answer Answer    Joke Joke    Praise Praise    Rant Rant    Admin Admin   

Use Ctrl+Left/Right to switch messages, Ctrl+Up/Down to switch threads, Ctrl+Shift+Left/Right to switch pages.