1 out of 3 rated this helpful - Rate this topic

MethodAttributes Enumeration

Specifies flags for method attributes. These flags are defined in the corhdr.h file.

This enumeration has a FlagsAttribute attribute that allows a bitwise combination of its member values.

Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)

[SerializableAttribute] 
[FlagsAttribute] 
[ComVisibleAttribute(true)] 
public enum MethodAttributes
/** @attribute SerializableAttribute() */ 
/** @attribute FlagsAttribute() */ 
/** @attribute ComVisibleAttribute(true) */ 
public enum MethodAttributes
SerializableAttribute 
FlagsAttribute 
ComVisibleAttribute(true) 
public enum MethodAttributes
  Member name Description
Supported by the .NET Compact Framework Abstract Indicates that the class does not provide an implementation of this method. 
Supported by the .NET Compact Framework Assembly Indicates that the method is accessible to any class of this assembly. 
CheckAccessOnOverride Indicates that the method can only be overridden when it is also accessible. 
Supported by the .NET Compact Framework FamANDAssem Indicates that the method is accessible to members of this type and its derived types that are in this assembly only. 
Supported by the .NET Compact Framework Family Indicates that the method is accessible only to members of this class and its derived classes. 
Supported by the .NET Compact Framework FamORAssem Indicates that the method is accessible to derived classes anywhere, as well as to any class in the assembly. 
Supported by the .NET Compact Framework Final Indicates that the method cannot be overridden. 
Supported by the .NET Compact Framework HasSecurity Indicates that the method has security associated with it. Reserved flag for runtime use only. 
Supported by the .NET Compact Framework HideBySig Indicates that the method hides by name and signature; otherwise, by name only. 
Supported by the .NET Compact Framework MemberAccessMask Retrieves accessibility information. 
Supported by the .NET Compact Framework NewSlot Indicates that the method always gets a new slot in the vtable. 
Supported by the .NET Compact Framework PinvokeImpl Indicates that the method implementation is forwarded through PInvoke (Platform Invocation Services). 
Supported by the .NET Compact Framework Private Indicates that the method is accessible only to the current class. 
Supported by the .NET Compact Framework PrivateScope Indicates that the member cannot be referenced. 
Supported by the .NET Compact Framework Public Indicates that the method is accessible to any object for which this object is in scope. 
Supported by the .NET Compact Framework RequireSecObject Indicates that the method calls another method containing security code. Reserved flag for runtime use only. 
Supported by the .NET Compact Framework ReservedMask Indicates a reserved flag for runtime use only. 
Supported by the .NET Compact Framework ReuseSlot Indicates that the method will reuse an existing slot in the vtable. This is the default behavior. 
Supported by the .NET Compact Framework RTSpecialName Indicates that the common language runtime checks the name encoding. 
Supported by the .NET Compact Framework SpecialName Indicates that the method is special. The name describes how this method is special. 
Supported by the .NET Compact Framework Static Indicates that the method is defined on the type; otherwise, it is defined per instance. 
Supported by the .NET Compact Framework UnmanagedExport Indicates that the managed method is exported by thunk to unmanaged code. 
Supported by the .NET Compact Framework Virtual Indicates that the method is virtual. 
Supported by the .NET Compact Framework VtableLayoutMask Retrieves vtable attributes. 

The following example displays the attributes of the specified method.

using System;
using System.Reflection;
 
class AttributesSample
{
    public void Mymethod (int int1m, out string str2m, ref string str3m)
    {
        str2m = "in Mymethod";
    }
 
    public static int Main(string[] args)
    {      
        Console.WriteLine ("Reflection.MethodBase.Attributes Sample");
       
        // Get the type of the chosen class.
        Type MyType = Type.GetType("AttributesSample");
 
        // Get the method Mymethod on the type.
        MethodBase Mymethodbase = MyType.GetMethod("Mymethod");
 
        // Display the method name and signature.
        Console.WriteLine("Mymethodbase = " + Mymethodbase);
 
        // Get the MethodAttribute enumerated value.
        MethodAttributes Myattributes = Mymethodbase.Attributes;
 
        // Display the flags that are set.
        PrintAttributes(typeof(System.Reflection.MethodAttributes), (int) Myattributes);
        return 0;
    }
 
 
    public static void PrintAttributes(Type attribType, int iAttribValue)
    {
        if (!attribType.IsEnum) {Console.WriteLine("This type is not an enum."); return;}
 
        FieldInfo[] fields = attribType.GetFields(BindingFlags.Public | BindingFlags.Static);
        for (int i = 0; i < fields.Length; i++)
        {
            int fieldvalue = (Int32)fields[i].GetValue(null);
            if ((fieldvalue & iAttribValue) == fieldvalue)
            {
                Console.WriteLine(fields[i].Name);
            }
        }
    }
}

import System.*;
import System.Reflection.*;

class AttributesSample
{   
    public void MyMethod(int int1m,
		/** @ref
		 */ String str2m,
        /** @ref
         */ String str3m)
    {
        str2m = "in MyMethod";
    } //MyMethod

    public static void main(String[] args)
    {
        Console.WriteLine("Reflection.MethodBase.Attributes Sample");

        // Get the type of the chosen class.
        Type myType = Type.GetType("AttributesSample");

        // Get the method MyMethod on the type.
        MethodBase myMethodBase = myType.GetMethod("MyMethod");

        // Display the method name and signature.
        Console.WriteLine(("myMethodBase = " + myMethodBase));

        // Get the MethodAttribute enumerated value.
        MethodAttributes myAttributes = myMethodBase.get_Attributes();

        // Display the flags that are set.
        PrintAttributes(System.Reflection.MethodAttributes.class.ToType(),
            (int)(myAttributes));
    } //main

    public static void PrintAttributes(Type attribType, int iAttribValue)
    {
        if (!(attribType.get_IsEnum())) {
            Console.WriteLine("This type is not an enum.");
            return ;
        }
        FieldInfo fields[] = attribType.GetFields(
			(BindingFlags.Public | BindingFlags.Static));
        for(int i=0; i < fields.length; i++) {
            int fieldValue = (int)((Int32)(fields[i].GetValue(null)));
            if ((fieldValue & iAttribValue) == fieldValue  ) {
                Console.WriteLine(fields[i].get_Name());
            }
        } 
    } //PrintAttributes
} //AttributesSample

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

.NET Framework

Supported in: 2.0, 1.1, 1.0

.NET Compact Framework

Supported in: 2.0, 1.0
Did you find this helpful?
(1500 characters remaining)
Community Content Add
Annotations FAQ