次の方法で共有


GenericTypeParameterBuilder クラス

定義

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

public ref class GenericTypeParameterBuilder sealed : Type
public ref class GenericTypeParameterBuilder sealed : System::Reflection::TypeInfo
public ref class GenericTypeParameterBuilder abstract : System::Reflection::TypeInfo
public sealed class GenericTypeParameterBuilder : Type
public sealed class GenericTypeParameterBuilder : System.Reflection.TypeInfo
public abstract class GenericTypeParameterBuilder : System.Reflection.TypeInfo
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class GenericTypeParameterBuilder : Type
[System.Runtime.InteropServices.ComVisible(true)]
public sealed class GenericTypeParameterBuilder : System.Reflection.TypeInfo
type GenericTypeParameterBuilder = class
    inherit Type
type GenericTypeParameterBuilder = class
    inherit TypeInfo
[<System.Runtime.InteropServices.ComVisible(true)>]
type GenericTypeParameterBuilder = class
    inherit Type
[<System.Runtime.InteropServices.ComVisible(true)>]
type GenericTypeParameterBuilder = class
    inherit TypeInfo
Public NotInheritable Class GenericTypeParameterBuilder
Inherits Type
Public NotInheritable Class GenericTypeParameterBuilder
Inherits TypeInfo
Public MustInherit Class GenericTypeParameterBuilder
Inherits TypeInfo
継承
GenericTypeParameterBuilder
継承
GenericTypeParameterBuilder
継承
GenericTypeParameterBuilder
属性

次のコード例では、2 つの型パラメーターを持つジェネリック型を作成し、アセンブリ GenericEmitExample1.dllに保存します。 Ildasm.exe (IL 逆アセンブラー) を使用して、生成された型を表示できます。 動的ジェネリック型の定義に関連する手順の詳細については、「方法: リフレクション出力を使用してジェネリック型を定義する」を参照してください。

using namespace System;
using namespace System::Reflection;
using namespace System::Reflection::Emit;
using namespace System::Collections::Generic;

// Dummy class to satisfy TFirst constraints.
//
public ref class Example {};

// Define a trivial base class and two trivial interfaces 
// to use when demonstrating constraints.
//
public ref class ExampleBase {};
public interface class IExampleA {};
public interface class IExampleB {};

// Define a trivial type that can substitute for type parameter 
// TSecond.
//
public ref class ExampleDerived : ExampleBase, IExampleA, IExampleB {};

// List the constraint flags. The GenericParameterAttributes
// enumeration contains two sets of attributes, variance and
// constraints. For this example, only constraints are used.
//
static void ListConstraintAttributes( Type^ t )
{
   // Mask off the constraint flags. 
   GenericParameterAttributes constraints = 
       t->GenericParameterAttributes & 
       GenericParameterAttributes::SpecialConstraintMask;

   if ((constraints & GenericParameterAttributes::ReferenceTypeConstraint)
           != GenericParameterAttributes::None)
       Console::WriteLine( L"    ReferenceTypeConstraint");

   if ((constraints & GenericParameterAttributes::NotNullableValueTypeConstraint)
           != GenericParameterAttributes::None)
       Console::WriteLine( L"    NotNullableValueTypeConstraint");

   if ((constraints & GenericParameterAttributes::DefaultConstructorConstraint)
           != GenericParameterAttributes::None)
       Console::WriteLine( L"    DefaultConstructorConstraint");
}

static void DisplayGenericParameters( Type^ t )
{
   if (!t->IsGenericType)
   {
       Console::WriteLine( L"Type '{0}' is not generic." );
       return;
   }
   if (!t->IsGenericTypeDefinition)
       t = t->GetGenericTypeDefinition();

   array<Type^>^ typeParameters = t->GetGenericArguments();
   Console::WriteLine( L"\r\nListing {0} type parameters for type '{1}'.", 
       typeParameters->Length, t );

   for each ( Type^ tParam in typeParameters )
   {
       Console::WriteLine( L"\r\nType parameter {0}:", 
           tParam->ToString() );

       for each (Type^ c in tParam->GetGenericParameterConstraints())
       {
           if (c->IsInterface)
               Console::WriteLine( L"    Interface constraint: {0}", c);
           else
               Console::WriteLine( L"    Base type constraint: {0}", c);
       }
       ListConstraintAttributes(tParam);
   }
}

void main()
{
   // Define a dynamic assembly to contain the sample type. The
   // assembly will be run and also saved to disk, so
   // AssemblyBuilderAccess.RunAndSave is specified.
   //
   AppDomain^ myDomain = AppDomain::CurrentDomain;
   AssemblyName^ myAsmName = gcnew AssemblyName( L"GenericEmitExample1" );
   AssemblyBuilder^ myAssembly = myDomain->DefineDynamicAssembly( 
       myAsmName, AssemblyBuilderAccess::RunAndSave );

   // An assembly is made up of executable modules. For a single-
   // module assembly, the module name and file name are the same 
   // as the assembly name. 
   //
   ModuleBuilder^ myModule = myAssembly->DefineDynamicModule( 
       myAsmName->Name, String::Concat( myAsmName->Name, L".dll" ) );

   // Get type objects for the base class trivial interfaces to
   // be used as constraints.
   //
   Type^ baseType = ExampleBase::typeid; 
   Type^ interfaceA = IExampleA::typeid; 
   Type^ interfaceB = IExampleB::typeid;
   
   // Define the sample type.
   //
   TypeBuilder^ myType = myModule->DefineType( L"Sample", 
       TypeAttributes::Public );
   
   Console::WriteLine( L"Type 'Sample' is generic: {0}", 
       myType->IsGenericType );
   
   // Define type parameters for the type. Until you do this, 
   // the type is not generic, as the preceding and following 
   // WriteLine statements show. The type parameter names are
   // specified as an array of strings. To make the code
   // easier to read, each GenericTypeParameterBuilder is placed
   // in a variable with the same name as the type parameter.
   // 
   array<String^>^typeParamNames = {L"TFirst",L"TSecond"};
   array<GenericTypeParameterBuilder^>^typeParams = 
       myType->DefineGenericParameters( typeParamNames );

   GenericTypeParameterBuilder^ TFirst = typeParams[0];
   GenericTypeParameterBuilder^ TSecond = typeParams[1];

   Console::WriteLine( L"Type 'Sample' is generic: {0}", 
       myType->IsGenericType );
   
   // Apply constraints to the type parameters.
   //
   // A type that is substituted for the first parameter, TFirst,
   // must be a reference type and must have a parameterless
   // constructor.
   TFirst->SetGenericParameterAttributes( 
       GenericParameterAttributes::DefaultConstructorConstraint | 
       GenericParameterAttributes::ReferenceTypeConstraint 
   );

   // A type that is substituted for the second type
   // parameter must implement IExampleA and IExampleB, and
   // inherit from the trivial test class ExampleBase. The
   // interface constraints are specified as an array
   // containing the interface types. 
   array<Type^>^interfaceTypes = { interfaceA, interfaceB };
   TSecond->SetInterfaceConstraints( interfaceTypes );
   TSecond->SetBaseTypeConstraint( baseType );

   // The following code adds a private field named ExampleField,
   // of type TFirst.
   FieldBuilder^ exField = 
       myType->DefineField("ExampleField", TFirst, 
           FieldAttributes::Private);

   // Define a static method that takes an array of TFirst and 
   // returns a List<TFirst> containing all the elements of 
   // the array. To define this method it is necessary to create
   // the type List<TFirst> by calling MakeGenericType on the
   // generic type definition, generic<T> List. 
   // The parameter type is created by using the
   // MakeArrayType method. 
   //
   Type^ listOf = List::typeid;
   Type^ listOfTFirst = listOf->MakeGenericType(TFirst);
   array<Type^>^ mParamTypes = { TFirst->MakeArrayType() };

   MethodBuilder^ exMethod = 
       myType->DefineMethod("ExampleMethod", 
           MethodAttributes::Public | MethodAttributes::Static, 
           listOfTFirst, 
           mParamTypes);

   // Emit the method body. 
   // The method body consists of just three opcodes, to load 
   // the input array onto the execution stack, to call the 
   // List<TFirst> constructor that takes IEnumerable<TFirst>,
   // which does all the work of putting the input elements into
   // the list, and to return, leaving the list on the stack. The
   // hard work is getting the constructor.
   // 
   // The GetConstructor method is not supported on a 
   // GenericTypeParameterBuilder, so it is not possible to get 
   // the constructor of List<TFirst> directly. There are two
   // steps, first getting the constructor of generic<T> List and then
   // calling a method that converts it to the corresponding 
   // constructor of List<TFirst>.
   //
   // The constructor needed here is the one that takes an
   // IEnumerable<T>. Note, however, that this is not the 
   // generic type definition of generic<T> IEnumerable; instead, the
   // T from generic<T> List must be substituted for the T of 
   // generic<T> IEnumerable. (This seems confusing only because both
   // types have type parameters named T. That is why this example
   // uses the somewhat silly names TFirst and TSecond.) To get
   // the type of the constructor argument, take the generic
   // type definition generic<T> IEnumerable and 
   // call MakeGenericType with the first generic type parameter
   // of generic<T> List. The constructor argument list must be passed
   // as an array, with just one argument in this case.
   // 
   // Now it is possible to get the constructor of generic<T> List,
   // using GetConstructor on the generic type definition. To get
   // the constructor of List<TFirst>, pass List<TFirst> and
   // the constructor from generic<T> List to the static
   // TypeBuilder.GetConstructor method.
   //
   ILGenerator^ ilgen = exMethod->GetILGenerator();
        
   Type^ ienumOf = IEnumerable::typeid;
   Type^ TfromListOf = listOf->GetGenericArguments()[0];
   Type^ ienumOfT = ienumOf->MakeGenericType(TfromListOf);
   array<Type^>^ ctorArgs = {ienumOfT};

   ConstructorInfo^ ctorPrep = listOf->GetConstructor(ctorArgs);
   ConstructorInfo^ ctor = 
       TypeBuilder::GetConstructor(listOfTFirst, ctorPrep);

   ilgen->Emit(OpCodes::Ldarg_0);
   ilgen->Emit(OpCodes::Newobj, ctor);
   ilgen->Emit(OpCodes::Ret);

   // Create the type and save the assembly. 
   Type^ finished = myType->CreateType();
   myAssembly->Save( String::Concat( myAsmName->Name, L".dll" ) );

   // Invoke the method.
   // ExampleMethod is not generic, but the type it belongs to is
   // generic, so in order to get a MethodInfo that can be invoked
   // it is necessary to create a constructed type. The Example 
   // class satisfies the constraints on TFirst, because it is a 
   // reference type and has a default constructor. In order to
   // have a class that satisfies the constraints on TSecond, 
   // this code example defines the ExampleDerived type. These
   // two types are passed to MakeGenericMethod to create the
   // constructed type.
   //
   array<Type^>^ typeArgs = 
       { Example::typeid, ExampleDerived::typeid };
   Type^ constructed = finished->MakeGenericType(typeArgs);
   MethodInfo^ mi = constructed->GetMethod("ExampleMethod");

   // Create an array of Example objects, as input to the generic
   // method. This array must be passed as the only element of an 
   // array of arguments. The first argument of Invoke is 
   // null, because ExampleMethod is static. Display the count
   // on the resulting List<Example>.
   // 
   array<Example^>^ input = { gcnew Example(), gcnew Example() };
   array<Object^>^ arguments = { input };

   List<Example^>^ listX = 
       (List<Example^>^) mi->Invoke(nullptr, arguments);

   Console::WriteLine(
       "\nThere are {0} elements in the List<Example>.", 
       listX->Count);

   DisplayGenericParameters(finished);
}

/* This code example produces the following output:

Type 'Sample' is generic: False
Type 'Sample' is generic: True

There are 2 elements in the List<Example>.

Listing 2 type parameters for type 'Sample[TFirst,TSecond]'.

Type parameter TFirst:
    ReferenceTypeConstraint
    DefaultConstructorConstraint

Type parameter TSecond:
    Interface constraint: IExampleA
    Interface constraint: IExampleB
    Base type constraint: ExampleBase
 */
using System;
using System.Reflection;
using System.Reflection.Emit;
using System.Collections.Generic;

// Define a trivial base class and two trivial interfaces
// to use when demonstrating constraints.
//
public class ExampleBase {}

public interface IExampleA {}

public interface IExampleB {}

// Define a trivial type that can substitute for type parameter
// TSecond.
//
public class ExampleDerived : ExampleBase, IExampleA, IExampleB {}

public class Example
{
    public static void Main()
    {
        // Define a dynamic assembly to contain the sample type. The
        // assembly will not be run, but only saved to disk, so
        // AssemblyBuilderAccess.Save is specified.
        //
        AppDomain myDomain = AppDomain.CurrentDomain;
        AssemblyName myAsmName = new AssemblyName("GenericEmitExample1");
        AssemblyBuilder myAssembly =
            myDomain.DefineDynamicAssembly(myAsmName,
                AssemblyBuilderAccess.RunAndSave);

        // An assembly is made up of executable modules. For a single-
        // module assembly, the module name and file name are the same
        // as the assembly name.
        //
        ModuleBuilder myModule =
            myAssembly.DefineDynamicModule(myAsmName.Name,
               myAsmName.Name + ".dll");

        // Get type objects for the base class trivial interfaces to
        // be used as constraints.
        //
        Type baseType = typeof(ExampleBase);
        Type interfaceA = typeof(IExampleA);
        Type interfaceB = typeof(IExampleB);

        // Define the sample type.
        //
        TypeBuilder myType =
            myModule.DefineType("Sample", TypeAttributes.Public);

        Console.WriteLine("Type 'Sample' is generic: {0}",
            myType.IsGenericType);

        // Define type parameters for the type. Until you do this,
        // the type is not generic, as the preceding and following
        // WriteLine statements show. The type parameter names are
        // specified as an array of strings. To make the code
        // easier to read, each GenericTypeParameterBuilder is placed
        // in a variable with the same name as the type parameter.
        //
        string[] typeParamNames = {"TFirst", "TSecond"};
        GenericTypeParameterBuilder[] typeParams =
            myType.DefineGenericParameters(typeParamNames);

        GenericTypeParameterBuilder TFirst = typeParams[0];
        GenericTypeParameterBuilder TSecond = typeParams[1];

        Console.WriteLine("Type 'Sample' is generic: {0}",
            myType.IsGenericType);

        // Apply constraints to the type parameters.
        //
        // A type that is substituted for the first parameter, TFirst,
        // must be a reference type and must have a parameterless
        // constructor.
        TFirst.SetGenericParameterAttributes(
            GenericParameterAttributes.DefaultConstructorConstraint |
            GenericParameterAttributes.ReferenceTypeConstraint);

        // A type that is substituted for the second type
        // parameter must implement IExampleA and IExampleB, and
        // inherit from the trivial test class ExampleBase. The
        // interface constraints are specified as an array
        // containing the interface types.
        TSecond.SetBaseTypeConstraint(baseType);
        Type[] interfaceTypes = {interfaceA, interfaceB};
        TSecond.SetInterfaceConstraints(interfaceTypes);

        // The following code adds a private field named ExampleField,
        // of type TFirst.
        FieldBuilder exField =
            myType.DefineField("ExampleField", TFirst,
                FieldAttributes.Private);

        // Define a static method that takes an array of TFirst and
        // returns a List<TFirst> containing all the elements of
        // the array. To define this method it is necessary to create
        // the type List<TFirst> by calling MakeGenericType on the
        // generic type definition, List<T>. (The T is omitted with
        // the typeof operator when you get the generic type
        // definition.) The parameter type is created by using the
        // MakeArrayType method.
        //
        Type listOf = typeof(List<>);
        Type listOfTFirst = listOf.MakeGenericType(TFirst);
        Type[] mParamTypes = {TFirst.MakeArrayType()};

        MethodBuilder exMethod =
            myType.DefineMethod("ExampleMethod",
                MethodAttributes.Public | MethodAttributes.Static,
                listOfTFirst,
                mParamTypes);

        // Emit the method body.
        // The method body consists of just three opcodes, to load
        // the input array onto the execution stack, to call the
        // List<TFirst> constructor that takes IEnumerable<TFirst>,
        // which does all the work of putting the input elements into
        // the list, and to return, leaving the list on the stack. The
        // hard work is getting the constructor.
        //
        // The GetConstructor method is not supported on a
        // GenericTypeParameterBuilder, so it is not possible to get
        // the constructor of List<TFirst> directly. There are two
        // steps, first getting the constructor of List<T> and then
        // calling a method that converts it to the corresponding
        // constructor of List<TFirst>.
        //
        // The constructor needed here is the one that takes an
        // IEnumerable<T>. Note, however, that this is not the
        // generic type definition of IEnumerable<T>; instead, the
        // T from List<T> must be substituted for the T of
        // IEnumerable<T>. (This seems confusing only because both
        // types have type parameters named T. That is why this example
        // uses the somewhat silly names TFirst and TSecond.) To get
        // the type of the constructor argument, take the generic
        // type definition IEnumerable<T> (expressed as
        // IEnumerable<> when you use the typeof operator) and
        // call MakeGenericType with the first generic type parameter
        // of List<T>. The constructor argument list must be passed
        // as an array, with just one argument in this case.
        //
        // Now it is possible to get the constructor of List<T>,
        // using GetConstructor on the generic type definition. To get
        // the constructor of List<TFirst>, pass List<TFirst> and
        // the constructor from List<T> to the static
        // TypeBuilder.GetConstructor method.
        //
        ILGenerator ilgen = exMethod.GetILGenerator();

        Type ienumOf = typeof(IEnumerable<>);
        Type TfromListOf = listOf.GetGenericArguments()[0];
        Type ienumOfT = ienumOf.MakeGenericType(TfromListOf);
        Type[] ctorArgs = {ienumOfT};

        ConstructorInfo ctorPrep = listOf.GetConstructor(ctorArgs);
        ConstructorInfo ctor =
            TypeBuilder.GetConstructor(listOfTFirst, ctorPrep);

        ilgen.Emit(OpCodes.Ldarg_0);
        ilgen.Emit(OpCodes.Newobj, ctor);
        ilgen.Emit(OpCodes.Ret);

        // Create the type and save the assembly.
        Type finished = myType.CreateType();
        myAssembly.Save(myAsmName.Name+".dll");

        // Invoke the method.
        // ExampleMethod is not generic, but the type it belongs to is
        // generic, so in order to get a MethodInfo that can be invoked
        // it is necessary to create a constructed type. The Example
        // class satisfies the constraints on TFirst, because it is a
        // reference type and has a default constructor. In order to
        // have a class that satisfies the constraints on TSecond,
        // this code example defines the ExampleDerived type. These
        // two types are passed to MakeGenericMethod to create the
        // constructed type.
        //
        Type[] typeArgs = {typeof(Example), typeof(ExampleDerived)};
        Type constructed = finished.MakeGenericType(typeArgs);
        MethodInfo mi = constructed.GetMethod("ExampleMethod");

        // Create an array of Example objects, as input to the generic
        // method. This array must be passed as the only element of an
        // array of arguments. The first argument of Invoke is
        // null, because ExampleMethod is static. Display the count
        // on the resulting List<Example>.
        //
        Example[] input = {new Example(), new Example()};
        object[] arguments = {input};

        List<Example> listX =
            (List<Example>) mi.Invoke(null, arguments);

        Console.WriteLine(
            "\nThere are {0} elements in the List<Example>.",
            listX.Count);

        DisplayGenericParameters(finished);
    }

    private static void DisplayGenericParameters(Type t)
    {
        if (!t.IsGenericType)
        {
            Console.WriteLine("Type '{0}' is not generic.");
            return;
        }
        if (!t.IsGenericTypeDefinition)
        {
            t = t.GetGenericTypeDefinition();
        }

        Type[] typeParameters = t.GetGenericArguments();
        Console.WriteLine("\nListing {0} type parameters for type '{1}'.",
            typeParameters.Length, t);

        foreach( Type tParam in typeParameters )
        {
            Console.WriteLine("\r\nType parameter {0}:", tParam.ToString());

            foreach( Type c in tParam.GetGenericParameterConstraints() )
            {
                if (c.IsInterface)
                {
                    Console.WriteLine("    Interface constraint: {0}", c);
                }
                else
                {
                    Console.WriteLine("    Base type constraint: {0}", c);
                }
            }

            ListConstraintAttributes(tParam);
        }
    }

    // List the constraint flags. The GenericParameterAttributes
    // enumeration contains two sets of attributes, variance and
    // constraints. For this example, only constraints are used.
    //
    private static void ListConstraintAttributes(Type t)
    {
        // Mask off the constraint flags.
        GenericParameterAttributes constraints =
            t.GenericParameterAttributes & GenericParameterAttributes.SpecialConstraintMask;

        if ((constraints & GenericParameterAttributes.ReferenceTypeConstraint)
            != GenericParameterAttributes.None)
        {
            Console.WriteLine("    ReferenceTypeConstraint");
        }

        if ((constraints & GenericParameterAttributes.NotNullableValueTypeConstraint)
            != GenericParameterAttributes.None)
        {
            Console.WriteLine("    NotNullableValueTypeConstraint");
        }

        if ((constraints & GenericParameterAttributes.DefaultConstructorConstraint)
            !=GenericParameterAttributes.None)
        {
            Console.WriteLine("    DefaultConstructorConstraint");
        }
    }
}

/* This code example produces the following output:

Type 'Sample' is generic: False
Type 'Sample' is generic: True

There are 2 elements in the List<Example>.

Listing 2 type parameters for type 'Sample[TFirst,TSecond]'.

Type parameter TFirst:
    ReferenceTypeConstraint
    DefaultConstructorConstraint

Type parameter TSecond:
    Interface constraint: IExampleA
    Interface constraint: IExampleB
    Base type constraint: ExampleBase
 */
Imports System.Reflection
Imports System.Reflection.Emit
Imports System.Collections.Generic

' Define a trivial base class and two trivial interfaces 
' to use when demonstrating constraints.
'
Public Class ExampleBase
End Class

Public Interface IExampleA
End Interface

Public Interface IExampleB
End Interface

' Define a trivial type that can substitute for type parameter 
' TSecond.
'
Public Class ExampleDerived
    Inherits ExampleBase
    Implements IExampleA, IExampleB
End Class

Public Class Example
    Public Shared Sub Main()
        ' Define a dynamic assembly to contain the sample type. The
        ' assembly will not be run, but only saved to disk, so
        ' AssemblyBuilderAccess.Save is specified.
        '
        Dim myDomain As AppDomain = AppDomain.CurrentDomain
        Dim myAsmName As New AssemblyName("GenericEmitExample1")
        Dim myAssembly As AssemblyBuilder = myDomain.DefineDynamicAssembly( _
            myAsmName, _
            AssemblyBuilderAccess.RunAndSave)

        ' An assembly is made up of executable modules. For a single-
        ' module assembly, the module name and file name are the same 
        ' as the assembly name. 
        '
        Dim myModule As ModuleBuilder = myAssembly.DefineDynamicModule( _
            myAsmName.Name, _
            myAsmName.Name & ".dll")

        ' Get type objects for the base class trivial interfaces to
        ' be used as constraints.
        '
        Dim baseType As Type = GetType(ExampleBase)
        Dim interfaceA As Type = GetType(IExampleA)
        Dim interfaceB As Type = GetType(IExampleB)
                
        ' Define the sample type.
        '
        Dim myType As TypeBuilder = myModule.DefineType( _
            "Sample", _
            TypeAttributes.Public)

        Console.WriteLine("Type 'Sample' is generic: {0}", _
            myType.IsGenericType)

        ' Define type parameters for the type. Until you do this, 
        ' the type is not generic, as the preceding and following 
        ' WriteLine statements show. The type parameter names are
        ' specified as an array of strings. To make the code
        ' easier to read, each GenericTypeParameterBuilder is placed
        ' in a variable with the same name as the type parameter.
        ' 
        Dim typeParamNames() As String = {"TFirst", "TSecond"}
        Dim typeParams() As GenericTypeParameterBuilder = _
            myType.DefineGenericParameters(typeParamNames)

        Dim TFirst As GenericTypeParameterBuilder = typeParams(0)
        Dim TSecond As GenericTypeParameterBuilder = typeParams(1)

        Console.WriteLine("Type 'Sample' is generic: {0}", _
            myType.IsGenericType)

        ' Apply constraints to the type parameters.
        '
        ' A type that is substituted for the first parameter, TFirst,
        ' must be a reference type and must have a parameterless
        ' constructor.
        TFirst.SetGenericParameterAttributes( _
            GenericParameterAttributes.DefaultConstructorConstraint _
            Or GenericParameterAttributes.ReferenceTypeConstraint)

        ' A type that is substituted for the second type
        ' parameter must implement IExampleA and IExampleB, and
        ' inherit from the trivial test class ExampleBase. The
        ' interface constraints are specified as an array 
        ' containing the interface types.
        TSecond.SetBaseTypeConstraint(baseType)
        Dim interfaceTypes() As Type = {interfaceA, interfaceB}
        TSecond.SetInterfaceConstraints(interfaceTypes)

        ' The following code adds a private field named ExampleField,
        ' of type TFirst.
        Dim exField As FieldBuilder = _
            myType.DefineField("ExampleField", TFirst, _
                FieldAttributes.Private)

        ' Define a Shared method that takes an array of TFirst and 
        ' returns a List(Of TFirst) containing all the elements of 
        ' the array. To define this method it is necessary to create
        ' the type List(Of TFirst) by calling MakeGenericType on the
        ' generic type definition, List(Of T). (The T is omitted with
        ' the GetType operator when you get the generic type 
        ' definition.) The parameter type is created by using the
        ' MakeArrayType method. 
        '
        Dim listOf As Type = GetType(List(Of ))
        Dim listOfTFirst As Type = listOf.MakeGenericType(TFirst)
        Dim mParamTypes() As Type = { TFirst.MakeArrayType() }

        Dim exMethod As MethodBuilder = _
            myType.DefineMethod("ExampleMethod", _
                MethodAttributes.Public Or MethodAttributes.Static, _
                listOfTFirst, _
                mParamTypes)

        ' Emit the method body. 
        ' The method body consists of just three opcodes, to load 
        ' the input array onto the execution stack, to call the 
        ' List(Of TFirst) constructor that takes IEnumerable(Of TFirst),
        ' which does all the work of putting the input elements into
        ' the list, and to return, leaving the list on the stack. The
        ' hard work is getting the constructor.
        ' 
        ' The GetConstructor method is not supported on a 
        ' GenericTypeParameterBuilder, so it is not possible to get 
        ' the constructor of List(Of TFirst) directly. There are two
        ' steps, first getting the constructor of List(Of T) and then
        ' calling a method that converts it to the corresponding 
        ' constructor of List(Of TFirst).
        '
        ' The constructor needed here is the one that takes an
        ' IEnumerable(Of T). Note, however, that this is not the 
        ' generic type definition of IEnumerable(Of T); instead, the
        ' T from List(Of T) must be substituted for the T of 
        ' IEnumerable(Of T). (This seems confusing only because both
        ' types have type parameters named T. That is why this example
        ' uses the somewhat silly names TFirst and TSecond.) To get
        ' the type of the constructor argument, take the generic
        ' type definition IEnumerable(Of T) (expressed as 
        ' IEnumerable(Of ) when you use the GetType operator) and 
        ' call MakeGenericType with the first generic type parameter
        ' of List(Of T). The constructor argument list must be passed
        ' as an array, with just one argument in this case.
        ' 
        ' Now it is possible to get the constructor of List(Of T),
        ' using GetConstructor on the generic type definition. To get
        ' the constructor of List(Of TFirst), pass List(Of TFirst) and
        ' the constructor from List(Of T) to the static
        ' TypeBuilder.GetConstructor method.
        '
        Dim ilgen As ILGenerator = exMethod.GetILGenerator()
        
        Dim ienumOf As Type = GetType(IEnumerable(Of ))
        Dim listOfTParams() As Type = listOf.GetGenericArguments()
        Dim TfromListOf As Type = listOfTParams(0)
        Dim ienumOfT As Type = ienumOf.MakeGenericType(TfromListOf)
        Dim ctorArgs() As Type = { ienumOfT }

        Dim ctorPrep As ConstructorInfo = _
            listOf.GetConstructor(ctorArgs)
        Dim ctor As ConstructorInfo = _
            TypeBuilder.GetConstructor(listOfTFirst, ctorPrep)

        ilgen.Emit(OpCodes.Ldarg_0)
        ilgen.Emit(OpCodes.Newobj, ctor)
        ilgen.Emit(OpCodes.Ret)

        ' Create the type and save the assembly. 
        Dim finished As Type = myType.CreateType()
        myAssembly.Save(myAsmName.Name & ".dll")

        ' Invoke the method.
        ' ExampleMethod is not generic, but the type it belongs to is
        ' generic, so in order to get a MethodInfo that can be invoked
        ' it is necessary to create a constructed type. The Example 
        ' class satisfies the constraints on TFirst, because it is a 
        ' reference type and has a default constructor. In order to
        ' have a class that satisfies the constraints on TSecond, 
        ' this code example defines the ExampleDerived type. These
        ' two types are passed to MakeGenericMethod to create the
        ' constructed type.
        '
        Dim typeArgs() As Type = _
            { GetType(Example), GetType(ExampleDerived) }
        Dim constructed As Type = finished.MakeGenericType(typeArgs)
        Dim mi As MethodInfo = constructed.GetMethod("ExampleMethod")

        ' Create an array of Example objects, as input to the generic
        ' method. This array must be passed as the only element of an 
        ' array of arguments. The first argument of Invoke is 
        ' Nothing, because ExampleMethod is Shared. Display the count
        ' on the resulting List(Of Example).
        ' 
        Dim input() As Example = { New Example(), New Example() }
        Dim arguments() As Object = { input }

        Dim listX As List(Of Example) = mi.Invoke(Nothing, arguments)

        Console.WriteLine(vbLf & _
            "There are {0} elements in the List(Of Example).", _
            listX.Count _ 
        )

        DisplayGenericParameters(finished)
    End Sub

    Private Shared Sub DisplayGenericParameters(ByVal t As Type)

        If Not t.IsGenericType Then
            Console.WriteLine("Type '{0}' is not generic.")
            Return
        End If
        If Not t.IsGenericTypeDefinition Then _
            t = t.GetGenericTypeDefinition()

        Dim typeParameters() As Type = t.GetGenericArguments()
        Console.WriteLine(vbCrLf & _
            "Listing {0} type parameters for type '{1}'.", _
            typeParameters.Length, t)

        For Each tParam As Type In typeParameters

            Console.WriteLine(vbCrLf & "Type parameter {0}:", _
                tParam.ToString())

            For Each c As Type In tParam.GetGenericParameterConstraints()
                If c.IsInterface Then
                    Console.WriteLine("    Interface constraint: {0}", c)
                Else
                    Console.WriteLine("    Base type constraint: {0}", c)
                End If
            Next 

            ListConstraintAttributes(tParam)
        Next tParam
    End Sub

    ' List the constraint flags. The GenericParameterAttributes
    ' enumeration contains two sets of attributes, variance and
    ' constraints. For this example, only constraints are used.
    '
    Private Shared Sub ListConstraintAttributes(ByVal t As Type)

        ' Mask off the constraint flags. 
        Dim constraints As GenericParameterAttributes = _
            t.GenericParameterAttributes And _
            GenericParameterAttributes.SpecialConstraintMask

        If (constraints And GenericParameterAttributes.ReferenceTypeConstraint) _
                <> GenericParameterAttributes.None Then _
            Console.WriteLine("    ReferenceTypeConstraint")

        If (constraints And GenericParameterAttributes.NotNullableValueTypeConstraint) _
                <> GenericParameterAttributes.None Then _
            Console.WriteLine("    NotNullableValueTypeConstraint")

        If (constraints And GenericParameterAttributes.DefaultConstructorConstraint) _
                <> GenericParameterAttributes.None Then _
            Console.WriteLine("    DefaultConstructorConstraint")

    End Sub 

End Class

' This code example produces the following output:
'
'Type 'Sample' is generic: False
'Type 'Sample' is generic: True
'
'There are 2 elements in the List(Of Example).
'
'Listing 2 type parameters for type 'Sample[TFirst,TSecond]'.
'
'Type parameter TFirst:
'    ReferenceTypeConstraint
'    DefaultConstructorConstraint
'
'Type parameter TSecond:
'    Interface constraint: IExampleA
'    Interface constraint: IExampleB
'    Base type constraint: ExampleBase

注釈

GenericTypeParameterBuilder オブジェクトの配列を取得するには、TypeBuilder.DefineGenericParameters メソッドを使用して動的型に型パラメーターを追加し、ジェネリック型にするか、MethodBuilder.DefineGenericParameters メソッドを使用して動的メソッドに型パラメーターを追加します。 GenericTypeParameterBuilder オブジェクトを使用して、型パラメーターに制約を追加します。 制約には次の 3 種類があります。

  • 基本型制約は、ジェネリック型パラメーターに割り当てられた型が特定の基本型から派生する必要があることを指定します。 SetBaseTypeConstraint メソッドを使用して、この制約を設定します。

  • インターフェイス制約は、ジェネリック型パラメーターに割り当てられたすべての型が特定のインターフェイスを実装する必要があることを指定します。 SetInterfaceConstraints メソッドを使用して、インターフェイスの制約を設定します。

  • 特殊制約では、ジェネリック型パラメーターに割り当てられた型にパラメーターなしのコンストラクターが必要であること、参照型であるか、値型である必要があることを指定します。 SetGenericParameterAttributes メソッドを使用して、型パラメーターの特別な制約を設定します。

インターフェイス制約と特別な制約は、GenericTypeParameterBuilder クラスのメソッドを使用して取得できません。 型パラメーターを含むジェネリック型を作成したら、その Type オブジェクトを使用して制約を反映できます。 Type.GetGenericArguments メソッドを使用して型パラメーターを取得し、各型パラメーターに対して Type.GetGenericParameterConstraints メソッドを使用して基本型制約とインターフェイス制約を取得し、Type.GenericParameterAttributes プロパティを使用して特別な制約を取得します。

コンストラクター

GenericTypeParameterBuilder()

クラスの新しいインスタンス GenericTypeParameterBuilder 初期化します。

プロパティ

Assembly

現在の型パラメーターが属しているジェネリック型定義を含む動的アセンブリを表す Assembly オブジェクトを取得します。

AssemblyQualifiedName

すべてのケースで null を取得します。

Attributes

Typeに関連付けられている属性を取得します。

Attributes

Typeに関連付けられている属性を取得します。

(継承元 Type)
Attributes

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
BaseType

現在のジェネリック型パラメーターの基本型制約を取得します。

ContainsGenericParameters

すべてのケースで true を取得します。

CustomAttributes

このメンバーのカスタム属性を含むコレクションを取得します。

(継承元 MemberInfo)
DeclaredConstructors

現在の型で宣言されているコンストラクターのコレクションを取得します。

(継承元 TypeInfo)
DeclaredEvents

現在の型で定義されているイベントのコレクションを取得します。

(継承元 TypeInfo)
DeclaredFields

現在の型で定義されているフィールドのコレクションを取得します。

(継承元 TypeInfo)
DeclaredMembers

現在の型で定義されているメンバーのコレクションを取得します。

(継承元 TypeInfo)
DeclaredMethods

現在の型で定義されているメソッドのコレクションを取得します。

(継承元 TypeInfo)
DeclaredNestedTypes

現在の型で定義されている入れ子になった型のコレクションを取得します。

(継承元 TypeInfo)
DeclaredProperties

現在の型で定義されているプロパティのコレクションを取得します。

(継承元 TypeInfo)
DeclaringMethod

現在の GenericTypeParameterBuilder がジェネリック メソッドの型パラメーターを表す場合は、宣言メソッドを表す MethodInfo を取得します。

DeclaringType

ジェネリック型パラメーターが属するジェネリック型定義またはジェネリック メソッド定義を取得します。

FullName

すべてのケースで null を取得します。

GenericParameterAttributes

現在のジェネリック型パラメーターの共分散と特殊な制約を記述する GenericParameterAttributes フラグの組み合わせを取得します。

GenericParameterAttributes

現在のジェネリック型パラメーターの共分散と特殊な制約を記述する GenericParameterAttributes フラグの組み合わせを取得します。

(継承元 Type)
GenericParameterPosition

パラメーターを宣言したジェネリック型またはメソッドの型パラメーター リスト内の型パラメーターの位置を取得します。

GenericTypeArguments

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GenericTypeArguments

この型のジェネリック型引数の配列を取得します。

(継承元 Type)
GenericTypeArguments

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GenericTypeParameters

現在のインスタンスのジェネリック型パラメーターの配列を取得します。

(継承元 TypeInfo)
GUID

不完全なジェネリック型パラメーターではサポートされていません。

HasElementType

現在の Type が別の型を包含するか参照するかを示す値を取得します。つまり、現在の Type が配列、ポインター、または参照渡しのいずれであるか。

(継承元 Type)
HasElementType

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
ImplementedInterfaces

現在の型によって実装されているインターフェイスのコレクションを取得します。

(継承元 TypeInfo)
IsAbstract

Type が抽象であり、オーバーライドする必要があるかどうかを示す値を取得します。

(継承元 Type)
IsAbstract

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsAnsiClass

Typeの文字列形式属性 AnsiClass が選択されているかどうかを示す値を取得します。

(継承元 Type)
IsAnsiClass

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsArray

型が配列かどうかを示す値を取得します。

(継承元 Type)
IsArray

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsAutoClass

Typeの文字列形式属性 AutoClass が選択されているかどうかを示す値を取得します。

(継承元 Type)
IsAutoClass

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsAutoLayout

現在の型のフィールドが共通言語ランタイムによって自動的にレイアウトされるかどうかを示す値を取得します。

(継承元 Type)
IsAutoLayout

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsByRef

Type が参照渡しされるかどうかを示す値を取得します。

(継承元 Type)
IsByRef

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsByRefLike

型が byref に似た構造体であるかどうかを示す値を取得します。

IsByRefLike

型が byref に似た構造体であるかどうかを示す値を取得します。

(継承元 Type)
IsClass

Type がクラスかデリゲートかを示す値を取得します。つまり、値の型やインターフェイスではありません。

(継承元 Type)
IsClass

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsCollectible

この MemberInfo オブジェクトが収集可能な AssemblyLoadContextに保持されているアセンブリの一部であるかどうかを示す値を取得します。

(継承元 MemberInfo)
IsCOMObject

Type が COM オブジェクトであるかどうかを示す値を取得します。

(継承元 Type)
IsCOMObject

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsConstructedGenericType

このオブジェクトが構築されたジェネリック型を表すかどうかを示す値を取得します。

IsConstructedGenericType

このオブジェクトが構築されたジェネリック型を表すかどうかを示す値を取得します。 構築されたジェネリック型のインスタンスを作成できます。

(継承元 Type)
IsContextful

Type をコンテキストでホストできるかどうかを示す値を取得します。

(継承元 Type)
IsEnum

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

IsEnum

現在の Type が列挙体を表すかどうかを示す値を取得します。

(継承元 Type)
IsEnum

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsExplicitLayout

現在の型のフィールドが明示的に指定されたオフセットにレイアウトされているかどうかを示す値を取得します。

(継承元 Type)
IsExplicitLayout

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsFunctionPointer

現在の Type が関数ポインターであるかどうかを示す値を取得します。

(継承元 Type)
IsGenericMethodParameter

現在の Type がジェネリック メソッドの定義で型パラメーターを表すかどうかを示す値を取得します。

(継承元 Type)
IsGenericParameter

すべてのケースで true を取得します。

IsGenericType

すべてのケースで false を返します。

IsGenericTypeDefinition

すべてのケースで false を取得します。

IsGenericTypeParameter

現在の Type がジェネリック型の定義で型パラメーターを表すかどうかを示す値を取得します。

(継承元 Type)
IsImport

TypeComImportAttribute 属性が適用されているかどうかを示す値を取得します。これは、COM タイプ ライブラリからインポートされたことを示します。

(継承元 Type)
IsImport

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsInterface

Type がインターフェイスであるかどうかを示す値を取得します。つまり、クラスや値型ではありません。

(継承元 Type)
IsInterface

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsLayoutSequential

現在の型のフィールドがメタデータに対して定義または出力された順序で順番にレイアウトされるかどうかを示す値を取得します。

(継承元 Type)
IsLayoutSequential

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsMarshalByRef

Type が参照によってマーシャリングされるかどうかを示す値を取得します。

(継承元 Type)
IsMarshalByRef

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNested

現在の Type オブジェクトが、その定義が別の型の定義内で入れ子になっている型を表すかどうかを示す値を取得します。

(継承元 Type)
IsNested

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNestedAssembly

Type が入れ子で、独自のアセンブリ内でのみ表示されるかどうかを示す値を取得します。

(継承元 Type)
IsNestedAssembly

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNestedFamANDAssem

Type が入れ子にされ、独自のファミリと独自のアセンブリの両方に属するクラスにのみ表示されるかどうかを示す値を取得します。

(継承元 Type)
IsNestedFamANDAssem

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNestedFamily

Type が入れ子になり、そのファミリ内でのみ表示されるかどうかを示す値を取得します。

(継承元 Type)
IsNestedFamily

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNestedFamORAssem

Type が入れ子にされ、独自のファミリまたは独自のアセンブリに属するクラスにのみ表示されるかどうかを示す値を取得します。

(継承元 Type)
IsNestedFamORAssem

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNestedPrivate

Type が入れ子にされ、プライベートとして宣言されているかどうかを示す値を取得します。

(継承元 Type)
IsNestedPrivate

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNestedPublic

クラスが入れ子にされ、パブリックとして宣言されているかどうかを示す値を取得します。

(継承元 Type)
IsNestedPublic

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsNotPublic

Type がパブリックとして宣言されていないかどうかを示す値を取得します。

(継承元 Type)
IsNotPublic

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsPointer

Type がポインターであるかどうかを示す値を取得します。

(継承元 Type)
IsPointer

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsPrimitive

Type がプリミティブ型の 1 つであるかどうかを示す値を取得します。

(継承元 Type)
IsPrimitive

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsPublic

Type がパブリックとして宣言されているかどうかを示す値を取得します。

(継承元 Type)
IsPublic

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsSealed

Type がシールとして宣言されているかどうかを示す値を取得します。

(継承元 Type)
IsSealed

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsSecurityCritical

現在の型が現在の信頼レベルでセキュリティ クリティカルかセキュリティ セーフ クリティカルかを示す値を取得します。そのため、重要な操作を実行できます。

(継承元 Type)
IsSecuritySafeCritical

現在の型が現在の信頼レベルでセキュリティ セーフ クリティカルであるかどうかを示す値を取得します。つまり、重要な操作を実行でき、透過的なコードからアクセスできるかどうかです。

(継承元 Type)
IsSecurityTransparent

現在の型が現在の信頼レベルで透過的であり、重要な操作を実行できないかどうかを示す値を取得します。

(継承元 Type)
IsSerializable

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

IsSerializable
古い.

Type がバイナリ シリアル化可能かどうかを示す値を取得します。

(継承元 Type)
IsSerializable

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsSignatureType

型がシグネチャ型かどうかを示す値を取得します。

(継承元 Type)
IsSpecialName

型に特別な処理を必要とする名前があるかどうかを示す値を取得します。

(継承元 Type)
IsSpecialName

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsSZArray

型が、下限が 0 の 1 次元配列のみを表すことができる配列型であるかどうかを示す値を取得します。

IsSZArray

型が、下限が 0 の 1 次元配列のみを表すことができる配列型であるかどうかを示す値を取得します。

(継承元 Type)
IsTypeDefinition

型が型定義であるかどうかを示す値を取得します。

IsTypeDefinition

型が型定義であるかどうかを示す値を取得します。

(継承元 Type)
IsUnicodeClass

Typeの文字列形式属性 UnicodeClass が選択されているかどうかを示す値を取得します。

(継承元 Type)
IsUnicodeClass

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsUnmanagedFunctionPointer

現在の Type がアンマネージ関数ポインターであるかどうかを示す値を取得します。

(継承元 Type)
IsValueType

Type が値型かどうかを示す値を取得します。

(継承元 Type)
IsValueType

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsVariableBoundArray

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

IsVariableBoundArray

型が、多次元配列を表すことができる配列型か、任意の下限を持つ配列であるかを示す値を取得します。

(継承元 Type)
IsVisible

アセンブリの外部のコードによって Type にアクセスできるかどうかを示す値を取得します。

(継承元 Type)
IsVisible

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
MemberType

このメンバーが型または入れ子になった型であることを示す MemberTypes 値を取得します。

(継承元 Type)
MemberType

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
MetadataToken

メタデータ内の現在の動的モジュールを識別するトークンを取得します。

MetadataToken

メタデータ要素を識別する値を取得します。

(継承元 MemberInfo)
Module

ジェネリック型パラメーターを含む動的モジュールを取得します。

Name

ジェネリック型パラメーターの名前を取得します。

Namespace

すべてのケースで null を取得します。

ReflectedType

GenericTypeParameterBuilderの取得に使用された Type オブジェクトを取得します。

ReflectedType

MemberInfoのこのインスタンスを取得するために使用されたクラス オブジェクトを取得します。

(継承元 MemberInfo)
StructLayoutAttribute

現在の型のレイアウトを記述する StructLayoutAttribute を取得します。

(継承元 Type)
StructLayoutAttribute

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
TypeHandle

不完全なジェネリック型パラメーターではサポートされていません。

TypeInitializer

型の初期化子を取得します。

(継承元 Type)
TypeInitializer

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
UnderlyingSystemType

現在のジェネリック型パラメーターを取得します。

UnderlyingSystemType

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)

メソッド

AsType()

現在の型を Type オブジェクトとして返します。

(継承元 TypeInfo)
Equals(Object)

指定されたオブジェクトが EventToken のインスタンスであり、現在のインスタンスと等しいかどうかをテストします。

Equals(Type)

現在の Type の基になるシステム型が、指定した Typeの基になるシステム型と同じかどうかを判断します。

(継承元 Type)
FindInterfaces(TypeFilter, Object)

現在の Typeによって実装または継承されたインターフェイスのフィルター処理された一覧を表す Type オブジェクトの配列を返します。

(継承元 Type)
FindInterfaces(TypeFilter, Object)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
FindMembers(MemberTypes, BindingFlags, MemberFilter, Object)

指定したメンバー型の MemberInfo オブジェクトのフィルター処理された配列を返します。

(継承元 Type)
FindMembers(MemberTypes, BindingFlags, MemberFilter, Object)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetArrayRank()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetArrayRank()

配列内の次元の数を取得します。

(継承元 Type)
GetArrayRank()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetAttributeFlagsImpl()

派生クラスでオーバーライドされると、Attributes プロパティを実装し、Typeに関連付けられている属性を示す列挙値のビットごとの組み合わせを取得します。

GetAttributeFlagsImpl()

派生クラスでオーバーライドされると、Attributes プロパティを実装し、Typeに関連付けられている属性を示す列挙値のビットごとの組み合わせを取得します。

(継承元 Type)
GetConstructor(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

指定したバインディング制約と指定した呼び出し規則を使用して、指定した引数の型と修飾子と一致するパラメーターを持つコンストラクターを検索します。

(継承元 Type)
GetConstructor(BindingFlags, Binder, Type[], ParameterModifier[])

指定したバインド制約を使用して、指定した引数の型と修飾子と一致するパラメーターを持つコンストラクターを検索します。

(継承元 Type)
GetConstructor(BindingFlags, Type[])

指定したバインド制約を使用して、指定した引数の型と一致するパラメーターを持つコンストラクターを検索します。

(継承元 Type)
GetConstructor(Type[])

指定した配列内の型と一致するパラメーターを持つパブリック インスタンス コンストラクターを検索します。

(継承元 Type)
GetConstructor(Type[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetConstructorImpl(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

不完全なジェネリック型パラメーターではサポートされていません。

GetConstructorImpl(BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

派生クラスでオーバーライドされると、指定したバインディング制約と指定した呼び出し規則を使用して、指定した引数の型と修飾子と一致するパラメーターを持つコンストラクターを検索します。

(継承元 Type)
GetConstructors()

現在の Typeに対して定義されているすべてのパブリック コンストラクターを返します。

(継承元 Type)
GetConstructors()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetConstructors(BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetConstructors(BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetCustomAttributes(Boolean)

不完全なジェネリック型パラメーターではサポートされていません。

GetCustomAttributes(Boolean)

派生クラスでオーバーライドされると、このメンバーに適用されるすべてのカスタム属性の配列を返します。

(継承元 MemberInfo)
GetCustomAttributes(Type, Boolean)

不完全なジェネリック型パラメーターではサポートされていません。

GetCustomAttributes(Type, Boolean)

派生クラスでオーバーライドされると、このメンバーに適用され、Typeによって識別されるカスタム属性の配列を返します。

(継承元 MemberInfo)
GetCustomAttributesData()

ターゲット メンバーに適用されている属性に関するデータを表す CustomAttributeData オブジェクトの一覧を返します。

(継承元 MemberInfo)
GetDeclaredEvent(String)

現在の型によって宣言された指定されたイベントを表すオブジェクトを返します。

(継承元 TypeInfo)
GetDeclaredField(String)

現在の型で宣言された指定したフィールドを表すオブジェクトを返します。

(継承元 TypeInfo)
GetDeclaredMethod(String)

現在の型によって宣言された指定されたメソッドを表すオブジェクトを返します。

(継承元 TypeInfo)
GetDeclaredMethods(String)

指定した名前に一致する現在の型で宣言されているすべてのメソッドを含むコレクションを返します。

(継承元 TypeInfo)
GetDeclaredNestedType(String)

現在の型によって宣言された、指定された入れ子になった型を表すオブジェクトを返します。

(継承元 TypeInfo)
GetDeclaredProperty(String)

現在の型で宣言されている指定したプロパティを表すオブジェクトを返します。

(継承元 TypeInfo)
GetDefaultMembers()

DefaultMemberAttribute が設定されている現在の Type に対して定義されているメンバーを検索します。

(継承元 Type)
GetDefaultMembers()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetElementType()

すべてのケースで NotSupportedException をスローします。

GetEnumName(Object)

現在の列挙型の指定した値を持つ定数の名前を返します。

(継承元 Type)
GetEnumName(Object)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetEnumNames()

現在の列挙型のメンバーの名前を返します。

(継承元 Type)
GetEnumNames()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetEnumUnderlyingType()

現在の列挙型の基になる型を返します。

(継承元 Type)
GetEnumUnderlyingType()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetEnumValues()

現在の列挙型の定数の値の配列を返します。

(継承元 Type)
GetEnumValues()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetEnumValuesAsUnderlyingType()

この列挙型の基になる型定数の値の配列を取得します。

(継承元 Type)
GetEvent(String)

指定したパブリック イベントを表す EventInfo オブジェクトを返します。

(継承元 Type)
GetEvent(String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetEvent(String, BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetEvent(String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetEvents()

不完全なジェネリック型パラメーターではサポートされていません。

GetEvents()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetEvents(BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetEvents(BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetField(String)

指定した名前のパブリック フィールドを検索します。

(継承元 Type)
GetField(String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetField(String, BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetField(String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetFields()

現在の Typeのすべてのパブリック フィールドを返します。

(継承元 Type)
GetFields()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetFields(BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetFields(BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetFunctionPointerCallingConventions()

派生クラスでオーバーライドされると、現在の関数ポインターの呼び出し規則 Type返します。

(継承元 Type)
GetFunctionPointerParameterTypes()

派生クラスでオーバーライドされると、現在の関数ポインター Typeのパラメーター型を返します。

(継承元 Type)
GetFunctionPointerReturnType()

派生クラスでオーバーライドされた場合は、現在の関数ポインターの戻り値の型 Type返します。

(継承元 Type)
GetGenericArguments()

ジェネリック型パラメーターには無効です。

GetGenericArguments()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetGenericParameterConstraints()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetGenericParameterConstraints()

現在のジェネリック型パラメーターの制約を表す Type オブジェクトの配列を返します。

(継承元 Type)
GetGenericParameterConstraints()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetGenericTypeDefinition()

ジェネリック型パラメーターには無効です。

GetHashCode()

現在のインスタンスの 32 ビット整数ハッシュ コードを返します。

GetInterface(String)

指定した名前のインターフェイスを検索します。

(継承元 Type)
GetInterface(String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetInterface(String, Boolean)

不完全なジェネリック型パラメーターではサポートされていません。

GetInterface(String, Boolean)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetInterfaceMap(Type)

不完全なジェネリック型パラメーターではサポートされていません。

GetInterfaces()

不完全なジェネリック型パラメーターではサポートされていません。

GetInterfaces()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMember(String)

指定した名前のパブリック メンバーを検索します。

(継承元 Type)
GetMember(String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMember(String, BindingFlags)

指定したバインディング制約を使用して、指定したメンバーを検索します。

(継承元 Type)
GetMember(String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMember(String, MemberTypes, BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetMember(String, MemberTypes, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMembers()

現在の Typeのすべてのパブリック メンバーを返します。

(継承元 Type)
GetMembers()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMembers(BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetMembers(BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMemberWithSameMetadataDefinitionAs(MemberInfo)

指定した MemberInfoに一致する現在の TypeMemberInfo を検索します。

(継承元 Type)
GetMethod(String)

指定した名前のパブリック メソッドを検索します。

(継承元 Type)
GetMethod(String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMethod(String, BindingFlags)

指定したバインディング制約を使用して、指定したメソッドを検索します。

(継承元 Type)
GetMethod(String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMethod(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

指定したバインディング制約と指定した呼び出し規則を使用して、指定した引数の型と修飾子と一致するパラメーターを持つ、指定したメソッドを検索します。

(継承元 Type)
GetMethod(String, BindingFlags, Binder, Type[], ParameterModifier[])

指定したバインディング制約を使用して、指定した引数の型と修飾子と一致するパラメーターを持つ、指定したメソッドを検索します。

(継承元 Type)
GetMethod(String, BindingFlags, Type[])

指定したバインディング制約を使用して、指定した引数の型と一致するパラメーターを持つ指定したメソッドを検索します。

(継承元 Type)
GetMethod(String, Int32, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

指定したバインディング制約と指定した呼び出し規則を使用して、指定したジェネリック パラメーター数、引数の型、修飾子と一致するパラメーターを持つ、指定したメソッドを検索します。

(継承元 Type)
GetMethod(String, Int32, BindingFlags, Binder, Type[], ParameterModifier[])

指定したバインド制約を使用して、指定したジェネリック パラメーター数、引数の型、および修飾子と一致するパラメーターを持つ、指定したメソッドを検索します。

(継承元 Type)
GetMethod(String, Int32, BindingFlags, Type[])

指定したバインディング制約を使用して、指定したジェネリック パラメーターの数と引数の型と一致するパラメーターを持つ、指定したメソッドを検索します。

(継承元 Type)
GetMethod(String, Int32, Type[])

指定したジェネリック パラメーターの数と引数の型と一致するパラメーターを持つ、指定したパブリック メソッドを検索します。

(継承元 Type)
GetMethod(String, Int32, Type[], ParameterModifier[])

指定したジェネリック パラメーター数、引数の型、および修飾子と一致するパラメーターを持つ、指定したパブリック メソッドを検索します。

(継承元 Type)
GetMethod(String, Type[])

指定した引数の型と一致するパラメーターを持つ、指定したパブリック メソッドを検索します。

(継承元 Type)
GetMethod(String, Type[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMethod(String, Type[], ParameterModifier[])

指定した引数の型と修飾子に一致するパラメーターを持つ、指定したパブリック メソッドを検索します。

(継承元 Type)
GetMethod(String, Type[], ParameterModifier[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMethodImpl(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

不完全なジェネリック型パラメーターではサポートされていません。

GetMethodImpl(String, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

派生クラスでオーバーライドされると、指定したバインディング制約と指定した呼び出し規則を使用して、指定した引数の型と修飾子と一致するパラメーターを持つ指定したメソッドを検索します。

(継承元 Type)
GetMethodImpl(String, Int32, BindingFlags, Binder, CallingConventions, Type[], ParameterModifier[])

派生クラスでオーバーライドされた場合、指定したバインディング制約と指定した呼び出し規則を使用して、指定したジェネリック パラメーター数、引数の型、および修飾子と一致するパラメーターを持つ、指定したメソッドを検索します。

(継承元 Type)
GetMethods()

現在の Typeのすべてのパブリック メソッドを返します。

(継承元 Type)
GetMethods()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetMethods(BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetMethods(BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetNestedType(String)

指定した名前を持つパブリックの入れ子になった型を検索します。

(継承元 Type)
GetNestedType(String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetNestedType(String, BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetNestedType(String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetNestedTypes()

現在の Typeに入れ子になったパブリック型を返します。

(継承元 Type)
GetNestedTypes()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetNestedTypes(BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetNestedTypes(BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetOptionalCustomModifiers()

派生クラスでオーバーライドされた場合は、現在の Typeの省略可能なカスタム修飾子を返します。

(継承元 Type)
GetProperties()

現在の Typeのすべてのパブリック プロパティを返します。

(継承元 Type)
GetProperties()

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetProperties(BindingFlags)

不完全なジェネリック型パラメーターではサポートされていません。

GetProperties(BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetProperty(String)

指定した名前のパブリック プロパティを検索します。

(継承元 Type)
GetProperty(String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetProperty(String, BindingFlags)

指定したバインド制約を使用して、指定したプロパティを検索します。

(継承元 Type)
GetProperty(String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetProperty(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

指定したバインディング制約を使用して、指定した引数の型と修飾子と一致するパラメーターを持つ、指定したプロパティを検索します。

(継承元 Type)
GetProperty(String, Type)

指定した名前と戻り値の型を持つパブリック プロパティを検索します。

(継承元 Type)
GetProperty(String, Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetProperty(String, Type, Type[])

指定した引数の型と一致するパラメーターを持つ、指定したパブリック プロパティを検索します。

(継承元 Type)
GetProperty(String, Type, Type[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetProperty(String, Type, Type[], ParameterModifier[])

指定した引数の型と修飾子に一致するパラメーターを持つ、指定したパブリック プロパティを検索します。

(継承元 Type)
GetProperty(String, Type, Type[], ParameterModifier[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetProperty(String, Type[])

指定した引数の型と一致するパラメーターを持つ、指定したパブリック プロパティを検索します。

(継承元 Type)
GetProperty(String, Type[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
GetPropertyImpl(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

不完全なジェネリック型パラメーターではサポートされていません。

GetPropertyImpl(String, BindingFlags, Binder, Type, Type[], ParameterModifier[])

派生クラスでオーバーライドされると、指定したバインディング制約を使用して、指定した引数の型と修飾子と一致するパラメーターを持つ指定したプロパティを検索します。

(継承元 Type)
GetRequiredCustomModifiers()

派生クラスでオーバーライドされた場合は、現在の Typeの必要なカスタム修飾子を返します。

(継承元 Type)
GetType()

現在の Typeを取得します。

(継承元 Type)
GetType()

メンバーの属性を検出し、メンバー メタデータへのアクセスを提供します。

(継承元 MemberInfo)
GetTypeCodeImpl()

この Type インスタンスの基になる型コードを返します。

(継承元 Type)
HasElementTypeImpl()

派生クラスでオーバーライドされた場合、HasElementType プロパティを実装し、現在の Type が別の型を含むか参照するかを決定します。つまり、現在の Type が配列、ポインター、または参照渡しのいずれであるか。

HasElementTypeImpl()

派生クラスでオーバーライドされた場合、HasElementType プロパティを実装し、現在の Type が別の型を含むか参照するかを決定します。つまり、現在の Type が配列、ポインター、または参照渡しのいずれであるか。

(継承元 Type)
HasSameMetadataDefinitionAs(MemberInfo)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 MemberInfo)
InvokeMember(String, BindingFlags, Binder, Object, Object[])

指定したバインディング制約を使用して、指定したメンバーを呼び出し、指定した引数リストと一致します。

(継承元 Type)
InvokeMember(String, BindingFlags, Binder, Object, Object[], CultureInfo)

指定したバインディング制約を使用し、指定した引数リストとカルチャに一致して、指定したメンバーを呼び出します。

(継承元 Type)
InvokeMember(String, BindingFlags, Binder, Object, Object[], ParameterModifier[], CultureInfo, String[])

不完全なジェネリック型パラメーターではサポートされていません。

IsArrayImpl()

派生クラスでオーバーライドされると、IsArray プロパティを実装し、Type が配列であるかどうかを判断します。

IsArrayImpl()

派生クラスでオーバーライドされると、IsArray プロパティを実装し、Type が配列であるかどうかを判断します。

(継承元 Type)
IsAssignableFrom(Type)

すべてのケースで NotSupportedException 例外をスローします。

IsAssignableFrom(Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsAssignableFrom(TypeInfo)

すべてのケースで NotSupportedException 例外をスローします。

IsAssignableTo(Type)

指定した targetTypeの変数に現在の型を割り当てることができるかどうかを判断します。

(継承元 Type)
IsByRefImpl()

派生クラスでオーバーライドされると、IsByRef プロパティを実装し、Type が参照によって渡されるかどうかを判断します。

IsByRefImpl()

派生クラスでオーバーライドされると、IsByRef プロパティを実装し、Type が参照によって渡されるかどうかを判断します。

(継承元 Type)
IsCOMObjectImpl()

派生クラスでオーバーライドされると、IsCOMObject プロパティを実装し、Type が COM オブジェクトであるかどうかを判断します。

IsCOMObjectImpl()

派生クラスでオーバーライドされると、IsCOMObject プロパティを実装し、Type が COM オブジェクトであるかどうかを判断します。

(継承元 Type)
IsContextfulImpl()

IsContextful プロパティを実装し、コンテキストで Type をホストできるかどうかを判断します。

(継承元 Type)
IsDefined(Type, Boolean)

不完全なジェネリック型パラメーターではサポートされていません。

IsDefined(Type, Boolean)

派生クラスでオーバーライドされた場合、指定した型またはその派生型の 1 つ以上の属性がこのメンバーに適用されるかどうかを示します。

(継承元 MemberInfo)
IsEnumDefined(Object)

指定した値が現在の列挙型に存在するかどうかを示す値を返します。

(継承元 Type)
IsEnumDefined(Object)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsEquivalentTo(Type)

2 つの COM 型が同じ ID を持ち、型の等価性の対象であるかどうかを判断します。

(継承元 Type)
IsEquivalentTo(Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsInstanceOfType(Object)

指定したオブジェクトが現在の Typeのインスタンスであるかどうかを判断します。

(継承元 Type)
IsInstanceOfType(Object)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

(継承元 TypeInfo)
IsMarshalByRefImpl()

IsMarshalByRef プロパティを実装し、Type が参照によってマーシャリングされるかどうかを判断します。

(継承元 Type)
IsPointerImpl()

派生クラスでオーバーライドされると、IsPointer プロパティを実装し、Type がポインターであるかどうかを判断します。

IsPointerImpl()

派生クラスでオーバーライドされると、IsPointer プロパティを実装し、Type がポインターであるかどうかを判断します。

(継承元 Type)
IsPrimitiveImpl()

派生クラスでオーバーライドされると、IsPrimitive プロパティを実装し、Type がプリミティブ型の 1 つであるかどうかを判断します。

IsPrimitiveImpl()

派生クラスでオーバーライドされると、IsPrimitive プロパティを実装し、Type がプリミティブ型の 1 つであるかどうかを判断します。

(継承元 Type)
IsSubclassOf(Type)

不完全なジェネリック型パラメーターではサポートされていません。

IsValueTypeImpl()

IsValueType プロパティを実装し、Type が値型であるかどうかを判断します。つまり、クラスやインターフェイスではありません。

IsValueTypeImpl()

IsValueType プロパティを実装し、Type が値型であるかどうかを判断します。つまり、クラスやインターフェイスではありません。

(継承元 Type)
MakeArrayType()

要素型がジェネリック型パラメーターである 1 次元配列の型を返します。

MakeArrayType(Int32)

要素型がジェネリック型パラメーターである配列の型を、指定した次元数で返します。

MakeByRefType()

参照パラメーターとして渡された場合、現在のジェネリック型パラメーターを表す Type オブジェクトを返します。

MakeGenericType(Type[])

不完全なジェネリック型パラメーターには無効です。

MakePointerType()

現在のジェネリック型パラメーターへのポインターを表す Type オブジェクトを返します。

MemberwiseClone()

現在の Objectの簡易コピーを作成します。

(継承元 Object)
SetBaseTypeConstraint(Type)

型パラメーターに置き換えるために、型が継承する必要がある基本型を設定します。

SetBaseTypeConstraintCore(Type)

派生クラスでオーバーライドされた場合、型パラメーターに置き換えるために型が継承する必要がある基本型を設定します。

SetCustomAttribute(ConstructorInfo, Byte[])

指定したカスタム属性 BLOB を使用してカスタム属性を設定します。

SetCustomAttribute(CustomAttributeBuilder)

カスタム属性ビルダーを使用してカスタム属性を設定します。

SetCustomAttributeCore(ConstructorInfo, ReadOnlySpan<Byte>)

派生クラスでオーバーライドされた場合は、このアセンブリにカスタム属性を設定します。

SetGenericParameterAttributes(GenericParameterAttributes)

パラメーターなしのコンストラクター制約など、ジェネリック パラメーターの分散特性と特殊な制約を設定します。

SetGenericParameterAttributesCore(GenericParameterAttributes)

派生クラスでオーバーライドされた場合は、パラメーターなしのコンストラクター制約など、ジェネリック パラメーターの分散特性と特殊な制約を設定します。

SetInterfaceConstraints(Type[])

型パラメーターに置き換えるために、型が実装する必要があるインターフェイスを設定します。

SetInterfaceConstraintsCore(Type[])

派生クラスでオーバーライドされた場合、型パラメーターに置き換えるために型が実装する必要があるインターフェイスを設定します。

ToString()

現在のジェネリック型パラメーターの文字列形式を返します。

明示的なインターフェイスの実装

_MemberInfo.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

名前のセットを、対応するディスパッチ識別子のセットにマップします。

(継承元 MemberInfo)
_MemberInfo.GetType()

MemberInfo クラスを表す Type オブジェクトを取得します。

(継承元 MemberInfo)
_MemberInfo.GetTypeInfo(UInt32, UInt32, IntPtr)

オブジェクトの型情報を取得します。これを使用して、インターフェイスの型情報を取得できます。

(継承元 MemberInfo)
_MemberInfo.GetTypeInfoCount(UInt32)

オブジェクトが提供する型情報インターフェイスの数を取得します (0 または 1)。

(継承元 MemberInfo)
_MemberInfo.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

オブジェクトによって公開されるプロパティとメソッドへのアクセスを提供します。

(継承元 MemberInfo)
_Type.GetIDsOfNames(Guid, IntPtr, UInt32, UInt32, IntPtr)

名前のセットを、対応するディスパッチ識別子のセットにマップします。

(継承元 Type)
_Type.GetTypeInfo(UInt32, UInt32, IntPtr)

オブジェクトの型情報を取得します。これを使用して、インターフェイスの型情報を取得できます。

(継承元 Type)
_Type.GetTypeInfoCount(UInt32)

オブジェクトが提供する型情報インターフェイスの数を取得します (0 または 1)。

(継承元 Type)
_Type.Invoke(UInt32, Guid, UInt32, Int16, IntPtr, IntPtr, IntPtr, IntPtr)

オブジェクトによって公開されるプロパティとメソッドへのアクセスを提供します。

(継承元 Type)
ICustomAttributeProvider.GetCustomAttributes(Boolean)

名前付き属性を除き、このメンバーで定義されているすべてのカスタム属性の配列を返します。カスタム属性がない場合は空の配列を返します。

(継承元 MemberInfo)
ICustomAttributeProvider.GetCustomAttributes(Type, Boolean)

このメンバーで定義されているカスタム属性の配列を型で識別するか、その型のカスタム属性がない場合は空の配列を返します。

(継承元 MemberInfo)
ICustomAttributeProvider.IsDefined(Type, Boolean)

attributeType の 1 つ以上のインスタンスがこのメンバーで定義されているかどうかを示します。

(継承元 MemberInfo)
IReflectableType.GetTypeInfo()

現在の型の表現を TypeInfo オブジェクトとして返します。

(継承元 TypeInfo)

拡張メソッド

GetCustomAttribute(MemberInfo, Type)

指定したメンバーに適用される、指定した型のカスタム属性を取得します。

GetCustomAttribute(MemberInfo, Type, Boolean)

指定したメンバーに適用される、指定した型のカスタム属性を取得し、必要に応じてそのメンバーの先祖を検査します。

GetCustomAttribute<T>(MemberInfo)

指定したメンバーに適用される、指定した型のカスタム属性を取得します。

GetCustomAttribute<T>(MemberInfo, Boolean)

指定したメンバーに適用される、指定した型のカスタム属性を取得し、必要に応じてそのメンバーの先祖を検査します。

GetCustomAttributes(MemberInfo)

指定したメンバーに適用されるカスタム属性のコレクションを取得します。

GetCustomAttributes(MemberInfo, Boolean)

指定したメンバーに適用されるカスタム属性のコレクションを取得し、必要に応じてそのメンバーの先祖を検査します。

GetCustomAttributes(MemberInfo, Type)

指定したメンバーに適用される、指定した型のカスタム属性のコレクションを取得します。

GetCustomAttributes(MemberInfo, Type, Boolean)

指定したメンバーに適用される、指定した型のカスタム属性のコレクションを取得し、必要に応じてそのメンバーの先祖を検査します。

GetCustomAttributes<T>(MemberInfo)

指定したメンバーに適用される、指定した型のカスタム属性のコレクションを取得します。

GetCustomAttributes<T>(MemberInfo, Boolean)

指定したメンバーに適用される、指定した型のカスタム属性のコレクションを取得し、必要に応じてそのメンバーの先祖を検査します。

IsDefined(MemberInfo, Type)

指定した型のカスタム属性が、指定したメンバーに適用されるかどうかを示します。

IsDefined(MemberInfo, Type, Boolean)

指定した型のカスタム属性が指定したメンバーに適用され、必要に応じてその先祖に適用されるかどうかを示します。

GetTypeInfo(Type)

指定した型の TypeInfo 表現を返します。

GetMetadataToken(MemberInfo)

指定されたメンバーのメタデータ トークンを取得します (使用可能な場合)。

HasMetadataToken(MemberInfo)

指定したメンバーに対してメタデータ トークンを使用できるかどうかを示す値を返します。

GetRuntimeEvent(Type, String)

指定したイベントを表すオブジェクトを取得します。

GetRuntimeEvents(Type)

指定した型で定義されているすべてのイベントを表すコレクションを取得します。

GetRuntimeField(Type, String)

指定したフィールドを表すオブジェクトを取得します。

GetRuntimeFields(Type)

指定した型で定義されているすべてのフィールドを表すコレクションを取得します。

GetRuntimeInterfaceMap(TypeInfo, Type)

指定した型と指定したインターフェイスのインターフェイス マッピングを返します。

GetRuntimeMethod(Type, String, Type[])

指定したメソッドを表すオブジェクトを取得します。

GetRuntimeMethods(Type)

指定した型で定義されているすべてのメソッドを表すコレクションを取得します。

GetRuntimeProperties(Type)

指定した型で定義されているすべてのプロパティを表すコレクションを取得します。

GetRuntimeProperty(Type, String)

指定したプロパティを表すオブジェクトを取得します。

GetConstructor(Type, Type[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetConstructors(Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetDefaultMembers(Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetEvent(Type, String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetField(Type, String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetInterfaces(Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetMember(Type, String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetMembers(Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetMethod(Type, String, Type[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetNestedType(Type, String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetProperties(Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetProperties(Type, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetProperty(Type, String)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetProperty(Type, String, BindingFlags)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetProperty(Type, String, Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

GetProperty(Type, String, Type, Type[])

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

IsAssignableFrom(Type, Type)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

IsInstanceOfType(Type, Object)

動的に定義されたジェネリック型とメソッドのジェネリック型パラメーターを定義して作成します。 このクラスは継承できません。

適用対象

こちらもご覧ください