MethodAttributes-Enumeration
Gibt Flags für Methodenattribute an. Diese Flags sind in der Datei corhdr.h definiert.
Diese Enumeration verfügt über ein FlagsAttribute -Attribut, das die bitweise Kombination der Memberwerte zulässt.
Namespace: System.Reflection
Assembly: mscorlib (in mscorlib.dll)
Syntax
'Declaration
<SerializableAttribute> _
<FlagsAttribute> _
<ComVisibleAttribute(True)> _
Public Enumeration MethodAttributes
'Usage
Dim instance As MethodAttributes
[SerializableAttribute]
[FlagsAttribute]
[ComVisibleAttribute(true)]
public enum MethodAttributes
[SerializableAttribute]
[FlagsAttribute]
[ComVisibleAttribute(true)]
public enum class MethodAttributes
/** @attribute SerializableAttribute() */
/** @attribute FlagsAttribute() */
/** @attribute ComVisibleAttribute(true) */
public enum MethodAttributes
SerializableAttribute
FlagsAttribute
ComVisibleAttribute(true)
public enum MethodAttributes
Member
Membername | Beschreibung | |
---|---|---|
Abstract | Gibt an, dass die Klasse keine Implementierung dieser Methode bereitstellt. | |
Assembly | Gibt an, dass alle Klassen dieser Assembly auf die Methode zugreifen können. | |
CheckAccessOnOverride | Gibt an, dass die Methode nur überschrieben werden kann, wenn auch der Zugriff auf sie möglich ist. | |
FamANDAssem | Gibt an, dass Member dieses Typs und von diesem abgeleitete Typen aus ausschließlich dieser Assembly auf die Methode zugreifen können. | |
Family | Gibt an, dass nur Member dieser Klasse und ihrer abgeleiteten Klassen auf die Methode zugreifen können. | |
FamORAssem | Gibt an, dass abgeleitete Klassen von beliebiger Stelle aus sowie beliebige Klassen in der Assembly auf die Methode zugreifen können. | |
Final | Gibt an, dass die Methode nicht überschrieben werden kann. | |
HasSecurity | Gibt an, dass der Methode Sicherheitsfunktionen zugeordnet sind. Flag, das für die ausschließliche Verwendung zur Laufzeit reserviert ist. | |
HideBySig | Gibt an, dass die Methode nach Namen und Signatur verborgen wird, andernfalls nur nach Namen. | |
MemberAccessMask | Ruft Zugriffsinformationen ab. | |
NewSlot | Gibt an, dass die Methode immer einen neuen Slot in der vtable erhält. | |
PinvokeImpl | Gibt an, dass die Methodenimplementierung durch PInvoke (Platform Invocation Services) weitergeleitet wird. | |
Private | Gibt an, dass nur die aktuelle Klasse auf die Methode zugreifen kann. | |
PrivateScope | Gibt an, dass auf den Member nicht verwiesen werden kann. | |
Public | Gibt an, dass alle Objekte, in deren Gültigkeitsbereich sich dieses Objekt befindet, auf die Methode zugreifen können. | |
RequireSecObject | Gibt an, dass die Methode eine andere Methode aufruft, die Sicherheitscode enthält. Flag, das für die ausschließliche Verwendung zur Laufzeit reserviert ist. | |
ReservedMask | Gibt ein Flag an, das für die ausschließliche Verwendung zur Laufzeit reserviert ist. | |
ReuseSlot | Gibt an, dass die Methode einen vorhandenen Slot in der vtable wiederverwendet. Dies ist das Standardverhalten. | |
RTSpecialName | Gibt an, dass die Common Language Runtime die Namenscodierung überprüft. | |
SpecialName | Gibt an, dass es sich um eine besondere Methode handelt. Dabei beschreibt der Name die Besonderheit der Methode. | |
Static | Gibt an, dass die Methode für den Typ definiert ist. Andernfalls ist sie für die jeweilige Instanz definiert. | |
UnmanagedExport | Gibt an, dass die verwaltete Methode über Thunk zu nicht verwaltetem Code exportiert wird. | |
Virtual | Gibt an, dass die Methode virtuell ist. | |
VtableLayoutMask | Ruft Attribute der vtable ab. |
Beispiel
Im folgenden Beispiel werden die Attribute der angegebenen Methode angezeigt.
Imports System
Imports System.Reflection
Imports Microsoft.VisualBasic
Class AttributesSample
Public Sub Mymethod(ByVal int1m As Integer, ByRef str2m As String, ByRef str3m As String)
str2m = "in Mymethod"
End Sub 'Mymethod
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 'PrintAttributes
End Class 'AttributesSample
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);
}
}
}
}
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;
}
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
Plattformen
Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile für Pocket PC, Windows Mobile für Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
.NET Framework unterstützt nicht alle Versionen sämtlicher Plattformen. Eine Liste der unterstützten Versionen finden Sie unter Systemanforderungen.
Versionsinformationen
.NET Framework
Unterstützt in: 2.0, 1.1, 1.0
.NET Compact Framework
Unterstützt in: 2.0, 1.0