MethodAttributes Enumeración

Definición

Especifica las marcas de los atributos del método. Estas marcas se definen en el archivo corhdr.h.

Esta enumeración admite una combinación bit a bit de sus valores de miembro.

public enum class MethodAttributes
[System.Flags]
public enum MethodAttributes
[System.Flags]
[System.Serializable]
public enum MethodAttributes
[System.Flags]
[System.Serializable]
[System.Runtime.InteropServices.ComVisible(true)]
public enum MethodAttributes
[<System.Flags>]
type MethodAttributes = 
[<System.Flags>]
[<System.Serializable>]
type MethodAttributes = 
[<System.Flags>]
[<System.Serializable>]
[<System.Runtime.InteropServices.ComVisible(true)>]
type MethodAttributes = 
Public Enum MethodAttributes
Herencia
MethodAttributes
Atributos

Campos

Abstract 1024

Indica que la clase no proporciona una implementación de este método.

Assembly 3

Indica que cualquier clase de este ensamblado puede obtener acceso al método.

CheckAccessOnOverride 512

Indica que el método sólo se puede reemplazar cuando se puede obtener acceso a este.

FamANDAssem 2

Indica que es posible obtener acceso al método por parte de miembros de este tipo y de los tipos derivados que estén sólo en este ensamblado.

Family 4

Indica que sólo los miembros de esta clase y sus clases derivadas pueden obtener acceso al método.

FamORAssem 5

Indica que tanto las clases derivadas de cualquier origen como cualquier clase del ensamblado pueden obtener acceso al método.

Final 32

Indica que este método no se puede reemplazar.

HasSecurity 16384

Indica que el método tiene asociadas características de seguridad. Marca reservada para uso exclusivo en tiempo de ejecución.

HideBySig 128

Indica que el método oculta por nombre y firma; en cualquier otro caso, sólo por nombre.

MemberAccessMask 7

Recupera información de accesibilidad.

NewSlot 256

Indica que el método siempre obtiene una nueva ranura en la tabla vtable.

PinvokeImpl 8192

Indica que la implementación del método se reenvía mediante PInvoke (Platform Invocation Services).

Private 1

Indica que sólo la clase actual puede obtener acceso al método.

PrivateScope 0

Indica que no se pueden crear referencias a este miembro.

Public 6

Indica que cualquier objeto a cuyo ámbito pertenezca este objeto puede obtener acceso al método.

RequireSecObject 32768

Indica que el método llama a otro método que contiene código de seguridad. Marca reservada para uso exclusivo en tiempo de ejecución.

ReservedMask 53248

Muestra una marca reservada para uso exclusivo en tiempo de ejecución.

ReuseSlot 0

Indica que el método siempre reutilizará una ranura existente en la tabla vtable. Este es el comportamiento predeterminado.

RTSpecialName 4096

Indica que Common Language Runtime debe comprobar la codificación de nombres.

SpecialName 2048

Indica que el método es especial. El nombre describe el motivo por el que dicho método es especial.

Static 16

Indica que el método está definido en el tipo; en cualquier otro caso, se define por instancia.

UnmanagedExport 8

Indica que el método administrado se exporta mediante código thunk a código no administrado.

Virtual 64

Indica que el método es virtual.

VtableLayoutMask 256

Recupera los atributos de la tabla vtable.

Ejemplos

En el ejemplo siguiente se muestran los atributos del método especificado.

using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::InteropServices;

public ref class AttributesSample
{
public:
   void Mymethod( int int1m, [Out]interior_ptr<String^> str2m, interior_ptr<String^> str3m )
   {
       *str2m = "in Mymethod";
   }
};

void PrintAttributes( Type^ attribType, int iAttribValue )
{
   if (  !attribType->IsEnum )
   {
      Console::WriteLine( "This type is not an enum." );
      return;
   }

   array<FieldInfo^>^fields = attribType->GetFields( static_cast<BindingFlags>(BindingFlags::Public | BindingFlags::Static) );
   for ( int i = 0; i < fields->Length; i++ )
   {
      int fieldvalue = safe_cast<Int32>(fields[ i ]->GetValue( nullptr ));
      if ( (fieldvalue & iAttribValue) == fieldvalue )
      {
         Console::WriteLine( fields[ i ]->Name );
      }
   }
}

int main()
{
   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 = {0}", Mymethodbase );

   // Get the MethodAttribute enumerated value.
   MethodAttributes Myattributes = Mymethodbase->Attributes;

   // Display the flags that are set.
   PrintAttributes( System::Reflection::MethodAttributes::typeid, (int)Myattributes );
   return 0;
}
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 = (int)fields[i].GetValue(null);
            if ((fieldvalue & iAttribValue) == fieldvalue)
            {
                Console.WriteLine(fields[i].Name);
            }
        }
    }
}
Imports System.Reflection

Class AttributesSample

    Public Sub Mymethod(ByVal int1m As Integer, ByRef str2m As String, ByRef str3m As String)
        str2m = "in Mymethod"
    End Sub


    Public Shared Function Main(ByVal args() As String) As Integer
        Console.WriteLine("Reflection.MethodBase.Attributes Sample")

        ' Get the type of a chosen class.
        Dim MyType As Type = Type.GetType("AttributesSample")

        ' Get the method Mymethod on the type.
        Dim Mymethodbase As MethodBase = MyType.GetMethod("Mymethod")

        ' Display the method name and signature.
        Console.WriteLine("Mymethodbase = {0}", Mymethodbase)

        ' Get the MethodAttribute enumerated value.
        Dim Myattributes As MethodAttributes = Mymethodbase.Attributes

        ' Display the flags that are set.
        PrintAttributes(GetType(System.Reflection.MethodAttributes), CInt(Myattributes))
        Return 0
    End Function 'Main

    Public Shared Sub PrintAttributes(ByVal attribType As Type, ByVal iAttribValue As Integer)
        If Not attribType.IsEnum Then
            Console.WriteLine("This type is not an enum.")
            Return
        End If
        Dim fields As FieldInfo() = attribType.GetFields((BindingFlags.Public Or BindingFlags.Static))
        Dim i As Integer
        For i = 0 To fields.Length - 1
            Dim fieldvalue As Integer = CType(fields(i).GetValue(Nothing), Int32)
            If (fieldvalue And iAttribValue) = fieldvalue Then
                Console.WriteLine(fields(i).Name)
            End If
        Next i
    End Sub
End Class

Se aplica a