MethodInfo.MemberType プロパティ
アセンブリ: mscorlib (mscorlib.dll 内)

このメンバがメソッドであることを示す MemberTypes 値。

このプロパティは MemberInfo.MemberType をオーバーライドします。したがって、MemberInfo オブジェクトのセット (GetMembers によって返された配列など) を調べた場合、指定したメンバがメソッドである場合のみ、MemberType プロパティは MemberTypes.Method を返します。
MemberType プロパティを取得するには、最初に Type クラスを取得します。そして、その Type から MethodInfo を取得します。そして、その MethodInfo から MemberType を取得します。

Imports System Imports System.Reflection Class MyMethodInfo Public Shared Function Main() As Integer Console.WriteLine("Reflection.MethodInfo") ' Get the Type and MethodInfo. Dim MyType As Type = Type.GetType("System.Reflection.FieldInfo") Dim Mymethodinfo As MethodInfo = MyType.GetMethod("GetValue") Console.WriteLine(MyType.FullName + "." + Mymethodinfo.Name) ' Get and display the MemberType property. Dim Mymembertypes As MemberTypes = Mymethodinfo.MemberType If MemberTypes.Constructor = Mymembertypes Then Console.WriteLine("MemberType is of type All.") ElseIf MemberTypes.Custom = Mymembertypes Then Console.WriteLine("MemberType is of type Custom.") ElseIf MemberTypes.Event = Mymembertypes Then Console.WriteLine("MemberType is of type Event.") ElseIf MemberTypes.Field = Mymembertypes Then Console.WriteLine("MemberType is of type Field.") ElseIf MemberTypes.Method = Mymembertypes Then Console.WriteLine("MemberType is of type Method.") ElseIf MemberTypes.Property = Mymembertypes Then Console.WriteLine("MemberType is of type Property.") ElseIf MemberTypes.TypeInfo = Mymembertypes Then Console.WriteLine("MemberType is of type TypeInfo.") End If Return 0 End Function End Class
using System; using System.Reflection; class MyMethodInfo { public static int Main() { Console.WriteLine("Reflection.MethodInfo"); // Get the Type and MethodInfo. Type MyType = Type.GetType("System.Reflection.FieldInfo"); MethodInfo Mymethodinfo = MyType.GetMethod("GetValue"); Console.WriteLine(MyType.FullName + "." + Mymethodinfo.Name); // Get and display the MemberType property. MemberTypes Mymembertypes = Mymethodinfo.MemberType; if (MemberTypes.Constructor == Mymembertypes) { Console.WriteLine("MemberType is of type All."); } else if (MemberTypes.Custom == Mymembertypes) { Console.WriteLine("MemberType is of type Custom."); } else if (MemberTypes.Event == Mymembertypes) { Console.WriteLine("MemberType is of type Event."); } else if (MemberTypes.Field == Mymembertypes) { Console.WriteLine("MemberType is of type Field."); } else if (MemberTypes.Method == Mymembertypes) { Console.WriteLine("MemberType is of type Method."); } else if (MemberTypes.Property == Mymembertypes) { Console.WriteLine("MemberType is of type Property."); } else if (MemberTypes.TypeInfo == Mymembertypes) { Console.WriteLine("MemberType is of type TypeInfo."); } return 0; } }
using namespace System; using namespace System::Reflection; int main() { Console::WriteLine( "Reflection.MethodInfo" ); // Get the Type and MethodInfo. Type^ MyType = Type::GetType( "System.Reflection.FieldInfo" ); MethodInfo^ Mymethodinfo = MyType->GetMethod( "GetValue" ); Console::WriteLine( "{0}.{1}", MyType->FullName, Mymethodinfo->Name ); // Get and display the MemberType property. MemberTypes Mymembertypes = Mymethodinfo->MemberType; if ( MemberTypes::Constructor == Mymembertypes ) { Console::WriteLine( "MemberType is of type All." ); } else if ( MemberTypes::Custom == Mymembertypes ) { Console::WriteLine( "MemberType is of type Custom." ); } else if ( MemberTypes::Event == Mymembertypes ) { Console::WriteLine( "MemberType is of type Event." ); } else if ( MemberTypes::Field == Mymembertypes ) { Console::WriteLine( "MemberType is of type Field." ); } else if ( MemberTypes::Method == Mymembertypes ) { Console::WriteLine( "MemberType is of type Method." ); } else if ( MemberTypes::Property == Mymembertypes ) { Console::WriteLine( "MemberType is of type Property." ); } else if ( MemberTypes::TypeInfo == Mymembertypes ) { Console::WriteLine( "MemberType is of type TypeInfo." ); } return 0; }
import System.*; import System.Reflection.*; class MyMethodInfo { public static void main(String[] args) { Console.WriteLine("Reflection.MethodInfo"); // Get the Type and MethodInfo. Type myType = Type.GetType("System.Reflection.FieldInfo"); MethodInfo myMethodInfo = myType.GetMethod("GetValue"); Console.WriteLine((myType.get_FullName() + "." + myMethodInfo.get_Name())); // Get and display the MemberType property. MemberTypes myMemberTypes = myMethodInfo.get_MemberType(); if (MemberTypes.Constructor.Equals(myMemberTypes)) { Console.WriteLine("MemberType is of type All."); } else { if (MemberTypes.Custom.Equals(myMemberTypes)) { Console.WriteLine("MemberType is of type Custom."); } else { if ( MemberTypes.Event.Equals(myMemberTypes)) { Console.WriteLine("MemberType is of type Event."); } else { if ( MemberTypes.Field.Equals(myMemberTypes)) { Console.WriteLine("MemberType is of type Field."); } else { if ( MemberTypes.Method.Equals(myMemberTypes)) { Console.WriteLine("MemberType is of type Method."); } else { if ( MemberTypes.Property.Equals(myMemberTypes)) { Console.WriteLine( "MemberType is of type Property."); } else { if ( MemberTypes.TypeInfo.Equals (myMemberTypes)) { Console.WriteLine ("MemberType is of type TypeInfo."); } } } } } } } } //main } //MyMethodInfo
import System; import System.Reflection; class MyMethodInfo { public static function Main() : void { Console.WriteLine("Reflection.MethodInfo"); //Get the Type and MethodInfo. var MyType : Type = Type.GetType("System.Reflection.FieldInfo"); var Mymethodinfo : MethodInfo = MyType.GetMethod("GetValue"); Console.WriteLine(MyType.FullName + "." + Mymethodinfo.Name); //Get and display the MemberType property. var Mymembertypes : MemberTypes = Mymethodinfo.MemberType; if ( MemberTypes.Constructor == Mymembertypes ) { Console.WriteLine( "MemberType is of type All" ); } else if ( MemberTypes.Custom == Mymembertypes ) { Console.WriteLine( "MemberType is of type Custom" ); } else if ( MemberTypes.Event == Mymembertypes ) { Console.WriteLine( "MemberType is of type Event" ); } else if ( MemberTypes.Field == Mymembertypes ) { Console.WriteLine( "MemberType is of type Field" ); } else if ( MemberTypes.Method == Mymembertypes ) { Console.WriteLine( "MemberType is of type Method" ); } else if ( MemberTypes.Property == Mymembertypes ) { Console.WriteLine( "MemberType is of type Property" ); } else if ( MemberTypes.TypeInfo == Mymembertypes ) { Console.WriteLine( "MemberType is of type TypeInfo" ); } } } MyMethodInfo.Main(); /* This code produces the following output: Reflection.MethodInfo System.Reflection.FieldInfo.GetValue MemberType is of type Method */

Windows 98, Windows 2000 SP4, Windows CE, Windows Millennium Edition, Windows Mobile for Pocket PC, Windows Mobile for Smartphone, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


_MethodInfo.MemberType プロパティ
アセンブリ: mscorlib (mscorlib.dll 内)


このプロパティは、アンマネージ コードからマネージ クラスにアクセスするためのプロパティであるため、マネージ コードからは呼び出さないでください。
MemberType プロパティは、メンバ (メソッド、コンストラクタ、イベントなど) の型を示す MemberTypes 値を取得します。

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition
開発プラットフォームの中には、.NET Framework によってサポートされていないバージョンがあります。サポートされているバージョンについては、「システム要件」を参照してください。


Weblioに収録されているすべての辞書からMethodInfo.MemberTypeを検索する場合は、下記のリンクをクリックしてください。

- MethodInfo.MemberTypeのページへのリンク