Method Attributes : Class Method « Class Interface « C# / C Sharp






Method Attributes

 

using System;
using System.Reflection;
public class TransactionableAttribute : Attribute {
    public TransactionableAttribute() {
    }
}

class SomeClass {
    [Transactionable]
    public void Foo() { }

    public void Bar() { }

    [Transactionable]
    public void Goo() { }
}

class Test {
    [STAThread]
    static void Main(string[] args) {
        Type type = Type.GetType("SomeClass");
        foreach (MethodInfo method in type.GetMethods()) {
            foreach (Attribute attr in
                method.GetCustomAttributes(true)) {
                if (attr is TransactionableAttribute) {
                    Console.WriteLine(method.Name);
                }
            }
        }
    }
}

 








Related examples in the same category

1.Define methods that return a value and accept parametersDefine methods that return a value and accept parameters
2.Class a class methodClass a class method
3.Call class methods 2Call class methods 2
4.Method overloading testMethod overloading test
5.Add a method to BuildingAdd a method to Building
6.A simple example that uses a parameterA simple example that uses a parameter
7.Add a method that takes two argumentsAdd a method that takes two arguments
8.Use a class factoryUse a class factory
9.Return an arrayReturn an array
10.Demonstrate method overloadingDemonstrate method overloading
11.Automatic type conversions can affect overloaded method resolutionAutomatic type conversions can affect 
   overloaded method resolution
12.A simple example of recursionA simple example of recursion
13.Overloading ClassesOverloading Classes
14.C# Classes Member FunctionsC# Classes Member Functions
15.change field value in a method