MethodAttributes 列挙型
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
メソッドの属性のフラグを指定します。 これらのフラグは、corhdr.h ファイルで定義されます。
この列挙体は、メンバー値のビットごとの組み合わせをサポートしています。
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
- 継承
- 属性
フィールド
Abstract | 1024 | クラスがこのメソッドの実装を提供しないことを示します。 |
Assembly | 3 | このアセンブリのすべてのクラスがメソッドにアクセスできることを示します。 |
CheckAccessOnOverride | 512 | アクセス可能な場合に限りオーバーライドできるメソッドであることを示します。 |
FamANDAssem | 2 | この型と、このアセンブリ内の派生した型のメンバーだけが、メソッドにアクセスできることを示します。 |
Family | 4 | このクラスとこのクラスの派生クラスのメンバーだけがメソッドにアクセスできることを示します。 |
FamORAssem | 5 | このアセンブリ内のすべてのクラスと、任意の場所にある派生クラスからメソッドにアクセスできることを示します。 |
Final | 32 | メソッドをオーバーライドできないことを示します。 |
HasSecurity | 16384 | メソッドにセキュリティが関連付けられていることを示します。 Runtime 専用に予約されているフラグです。 |
HideBySig | 128 | メソッドが名前とシグネチャで隠ぺいされることを示します。このフラグが設定されていない場合は、メソッドは名前だけで隠ぺいされます。 |
MemberAccessMask | 7 | アクセシビリティに関する情報を取得します。 |
NewSlot | 256 | メソッドが vtable で必ず新しいスロットを取得することを示します。 |
PinvokeImpl | 8192 | メソッドの実装が PInvoke (Platform Invocation Services) を通じて転送されることを示します。 |
Private | 1 | 現在のクラスだけからメソッドにアクセスできることを示します。 |
PrivateScope | 0 | メンバーを参照できないことを示します。 |
Public | 6 | このオブジェクトがスコープ内に入っている全オブジェクトからメソッドにアクセスできることを示します。 |
RequireSecObject | 32768 | メソッドが、セキュリティ コードを含んでいる別のメソッドを呼び出すことを示します。 Runtime 専用に予約されているフラグです。 |
ReservedMask | 53248 | Runtime 専用に予約されているフラグを示します。 |
ReuseSlot | 0 | メソッドが、vtable の既存のスロットを再利用することを示します。 これは既定の動作です。 |
RTSpecialName | 4096 | 共通言語ランタイムが名前のエンコーディングを確認することを示します。 |
SpecialName | 2048 | メソッドが特別であることを示します。 メソッドが特別である理由は名前で説明します。 |
Static | 16 | メソッドが型で定義されていることを示します。このフラグが設定されていない場合、メソッドはインスタンスごとに定義されます。 |
UnmanagedExport | 8 | マネージド メソッドが、サンクによってアンマネージド コードにエクスポートされることを示します。 |
Virtual | 64 | メソッドが仮想メソッドであることを示します。 |
VtableLayoutMask | 256 | vtable 属性を取得します。 |
例
次の例では、指定したメソッドの属性を表示します。
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
適用対象
.NET