Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

C# - Using Custom Annotations?

Tags:

c#

annotations

I created this Annotation class
This example might not make sense because It'll always throw an exception but I'm still using it as I am just trying to explain what my question is. My annotation never gets called for some reasons any solutions?

public class AuthenticationRequired : System.Attribute
{
   public AuthenticationRequired()
   {
      // My break point never gets hit why?
      throw new Exception("Throw this to see if annotation works or not");
   }
}

[AuthenticationRequired]
private void Window_Loaded(object sender, RoutedEventArgs e)
{
   // My break point get here
}
like image 923
aryaxt Avatar asked Jul 25 '11 03:07

aryaxt


People also ask

What C is used for?

C programming language is a machine-independent programming language that is mainly used to create many types of applications and operating systems such as Windows, and other complicated programs such as the Oracle database, Git, Python interpreter, and games and is considered a programming foundation in the process of ...

What is the full name of C?

In the real sense it has no meaning or full form. It was developed by Dennis Ritchie and Ken Thompson at AT&T bell Lab. First, they used to call it as B language then later they made some improvement into it and renamed it as C and its superscript as C++ which was invented by Dr.

Is C language easy?

C is a general-purpose language that most programmers learn before moving on to more complex languages. From Unix and Windows to Tic Tac Toe and Photoshop, several of the most commonly used applications today have been built on C. It is easy to learn because: A simple syntax with only 32 keywords.

What is C in C language?

What is C? C is a general-purpose programming language created by Dennis Ritchie at the Bell Laboratories in 1972. It is a very popular language, despite being old. C is strongly associated with UNIX, as it was developed to write the UNIX operating system.


1 Answers

My annotation never gets called for some reasons any solutions?

This is kind of a misunderstanding of attributes. Attributes effectively exist to add metadata to certain parts of your code (classes, properties, fields, methods, parameters, etc.) The compiler takes the information in the attribute and bakes it into the IL that it spits out when it's done eating your source code.

Attributes by themselves don't do anything unless someone consumes them. That is, someone at some point has to discover your attribute and then take action on it. They sit in the IL of your assembly, but they don't do anything unless someone finds them and acts on them. It's only when they do this will an instance of the attribute be instantiated. The typical way to do this is using reflection.

To obtain the attributes at runtime, you have to say something like

var attributes = typeof(Foo)
                    .GetMethod("Window_Loaded")
                    .GetCustomAttributes(typeof(AuthenticationRequired), true)
                    .Cast<AuthenticationRequired>();

foreach(var attribute in attributes) {
    Console.WriteLine(attribute.ToString());
}
like image 68
jason Avatar answered Sep 17 '22 22:09

jason