MethodAttributes 列挙体とは? わかりやすく解説

MethodAttributes 列挙体

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

この列挙体には、メンバ値のビットごとの組み合わせ可能にする FlagsAttribute 属性含まれています。

名前空間: System.Reflection
アセンブリ: mscorlib (mscorlib.dll 内)
構文構文

<SerializableAttribute> _
<FlagsAttribute> _
<ComVisibleAttribute(True)> _
Public Enumeration MethodAttributes
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
メンバメンバ
 メンバ説明
.NET Compact Framework によるサポートAbstractクラスがこのメソッド実装提供しないことを示します。 
.NET Compact Framework によるサポートAssemblyこのアセンブリすべてのクラスメソッドアクセスできること示します。 
CheckAccessOnOverrideアクセス可能な場合限りオーバーライドできるメソッドであることを示します。 
.NET Compact Framework によるサポートFamANDAssemこの型と、このアセンブリ内の派生した型のメンバだけが、メソッドアクセスできること示します。 
.NET Compact Framework によるサポートFamilyこのクラスとこのクラス派生クラスメンバだけがメソッドアクセスできること示します。 
.NET Compact Framework によるサポートFamORAssemこのアセンブリ内のすべてのクラスと、任意の場所にある派生クラスからメソッドアクセスできること示します。 
.NET Compact Framework によるサポートFinalメソッドオーバーライドできないこと示します。 
.NET Compact Framework によるサポートHasSecurityメソッドセキュリティ関連付けられていることを示しますRuntime 専用予約されているフラグです。 
.NET Compact Framework によるサポートHideBySigメソッドが名前とシグネチャ隠ぺいされることを示します。このフラグ設定されていない場合は、メソッドは名前だけで隠ぺいされます。 
.NET Compact Framework によるサポートMemberAccessMaskアクセシビリティに関する情報取得します。 
.NET Compact Framework によるサポートNewSlotメソッドvtable で必ず新しスロット取得することを示します。 
.NET Compact Framework によるサポートPinvokeImplメソッド実装が PInvoke (Platform Invocation Services) を通じて転送されることを示します。 
.NET Compact Framework によるサポートPrivate現在のクラスだけからメソッドアクセスできること示します。 
.NET Compact Framework によるサポートPrivateScopeメンバ参照できないこと示します。 
.NET Compact Framework によるサポートPublicこのオブジェクトスコープ内に入っている全オブジェクトからメソッドアクセスできること示します。 
.NET Compact Framework によるサポートRequireSecObjectメソッドが、セキュリティ コード含んでいる別のメソッド呼び出すことを示しますRuntime 専用予約されているフラグです。 
.NET Compact Framework によるサポートReservedMaskRuntime 専用予約されているフラグ示します。 
.NET Compact Framework によるサポートReuseSlotメソッドが、vtable既存スロット再利用することを示します。これが既定動作です。 
.NET Compact Framework によるサポートRTSpecialName共通言語ランタイムが名前のエンコーディング確認することを示します。 
.NET Compact Framework によるサポートSpecialNameメソッドが特別であることを示しますメソッドが特別である理由は名前で説明します。 
.NET Compact Framework によるサポートStaticメソッドが型で定義されていることを示します。このフラグ設定されていない場合メソッドインスタンスごとに定義されます。 
.NET Compact Framework によるサポートUnmanagedExportマネージ メソッドが、サンクによってアンマネージ コードエクスポートされることを示します。 
.NET Compact Framework によるサポートVirtualメソッド仮想メソッドであることを示します。 
.NET Compact Framework によるサポートVtableLayoutMaskvtable 属性取得します。 
使用例使用例

指定したメソッド属性表示する例を次に示します

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
プラットフォームプラットフォーム
バージョン情報バージョン情報
参照参照



英和和英テキスト翻訳>> Weblio翻訳
英語⇒日本語日本語⇒英語
  

辞書ショートカット

すべての辞書の索引

「MethodAttributes 列挙体」の関連用語

MethodAttributes 列挙体のお隣キーワード
検索ランキング

   

英語⇒日本語
日本語⇒英語
   



MethodAttributes 列挙体のページの著作権
Weblio 辞書 情報提供元は 参加元一覧 にて確認できます。

   
日本マイクロソフト株式会社日本マイクロソフト株式会社
© 2025 Microsoft.All rights reserved.

©2025 GRAS Group, Inc.RSS