MethodAttributes 列挙体

メソッドの属性について使用するフラグを指定します。これらのフラグは corhdr.h ファイルで定義されています。

この列挙体には、メンバ値をビットごとに演算するための FlagsAttribute 属性が含まれています。

<Flags>
<Serializable>
Public Enum MethodAttributes
[C#]
[Flags]
[Serializable]
public enum MethodAttributes
[C++]
[Flags]
[Serializable]
__value public enum MethodAttributes
[JScript]
public
   Flags
 Serializable
enum MethodAttributes

メンバ

メンバ名 説明
Abstract

.NET Compact Framework でもサポート。

クラスがこのメソッドの実装を提供しないことを示します。 1024
Assembly

.NET Compact Framework でもサポート。

このアセンブリのすべてのクラスがメソッドにアクセスできることを示します。 3
CheckAccessOnOverride アクセス可能な場合に限りオーバーライドできるメソッドであることを示します。 512
FamANDAssem

.NET Compact Framework でもサポート。

この型と、このアセンブリ内の派生した型のメンバだけが、メソッドにアクセスできることを示します。 2
Family

.NET Compact Framework でもサポート。

このクラスとこのクラスの派生クラスのメンバだけがメソッドにアクセスできることを示します。 4
FamORAssem

.NET Compact Framework でもサポート。

このアセンブリ内のすべてのクラスと、任意の場所にある派生クラスからメソッドにアクセスできることを示します。 5
Final

.NET Compact Framework でもサポート。

メソッドをオーバーライドできないことを示します。 32
HasSecurity

.NET Compact Framework でもサポート。

メソッドにセキュリティが関連付けられていることを示します。Runtime 専用に予約されているフラグです。 16384
HideBySig

.NET Compact Framework でもサポート。

メソッドが名前とシグネチャで隠ぺいされることを示します。このフラグが設定されていない場合は、メソッドは名前だけで隠ぺいされます。 128
MemberAccessMask

.NET Compact Framework でもサポート。

アクセシビリティに関する情報を取得します。 7
NewSlot

.NET Compact Framework でもサポート。

メソッドが vtable で必ず新しいスロットを取得することを示します。 256
PinvokeImpl

.NET Compact Framework でもサポート。

メソッドの実装が PInvoke (Platform Invocation Services) を通じて転送されることを示します。 8192
Private

.NET Compact Framework でもサポート。

現在のクラスだけからメソッドにアクセスできることを示します。 1
PrivateScope

.NET Compact Framework でもサポート。

メンバを参照できないことを示します。 0
Public

.NET Compact Framework でもサポート。

このオブジェクトがスコープ内に入っている全オブジェクトからメソッドにアクセスできることを示します。 6
RequireSecObject

.NET Compact Framework でもサポート。

メソッドが、セキュリティ コードを含んでいる別のメソッドを呼び出すことを示します。Runtime 専用に予約されているフラグです。 32768
ReservedMask

.NET Compact Framework でもサポート。

Runtime 専用に予約されているフラグを示します。 53248
ReuseSlot

.NET Compact Framework でもサポート。

メソッドが、vtable の既存のスロットを再利用することを示します。これが既定の動作です。 0
RTSpecialName

.NET Compact Framework でもサポート。

共通言語ランタイムが名前のエンコーディングを確認することを示します。 4096
SpecialName

.NET Compact Framework でもサポート。

メソッドが特別であることを示します。メソッドが特別である理由は名前で説明します。 2048
Static

.NET Compact Framework でもサポート。

メソッドが型で定義されていることを示します。このフラグが設定されていない場合、メソッドはインスタンスごとに定義されます。 16
UnmanagedExport

.NET Compact Framework でもサポート。

マネージ メソッドが、サンクによってアンマネージ コードにエクスポートされることを示します。 8
Virtual

.NET Compact Framework でもサポート。

メソッドが仮想メソッドであることを示します。 64
VtableLayoutMask

.NET Compact Framework でもサポート。

vtable 属性を取得します。 256

使用例

[Visual Basic, C#, C++] 指定したメソッドの属性を表示する例を次に示します。

 
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

[C#] 
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);
            }
        }
    }
}

[C++] 
#using <mscorlib.dll>
using namespace System;
using namespace System::Reflection;
using namespace System::Runtime::InteropServices;

public __gc class AttributesSample
{
public:
    void Mymethod (int int1m, [Out] String** str2m, String** str3m)
    {
        *str2m = S"in Mymethod";
    }
};

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

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

int main()
{      
    Console::WriteLine (S"Reflection.MethodBase.Attributes Sample");

    // Get the type of the chosen class.
    Type* MyType = Type::GetType(S"AttributesSample");

    // Get the method Mymethod on the type.
    MethodBase* Mymethodbase = MyType->GetMethod(S"Mymethod");

    // Display the method name and signature.
    Console::WriteLine(S"Mymethodbase = {0}", 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;
}

[JScript] JScript のサンプルはありません。Visual Basic、C#、および C++ のサンプルを表示するには、このページの左上隅にある言語のフィルタ ボタン 言語のフィルタ をクリックします。

必要条件

名前空間: System.Reflection

プラットフォーム: Windows 98, Windows NT 4.0, Windows Millennium Edition, Windows 2000, Windows XP Home Edition, Windows XP Professional, Windows Server 2003 ファミリ, .NET Compact Framework - Windows CE .NET

アセンブリ: Mscorlib (Mscorlib.dll 内)

参照

System.Reflection 名前空間