ModuleBuilder.GetConstructorToken メソッド

定義

このモジュール内で指定したコンストラクターの識別に使用したトークンを返します。

オーバーロード

GetConstructorToken(ConstructorInfo)

このモジュール内で指定したコンストラクターの識別に使用したトークンを返します。

GetConstructorToken(ConstructorInfo, IEnumerable<Type>)

このモジュール内の指定された属性とパラメーターの型を持つコンストラクターの識別に使用したトークンを返します。

GetConstructorToken(ConstructorInfo)

このモジュール内で指定したコンストラクターの識別に使用したトークンを返します。

public:
 System::Reflection::Emit::MethodToken GetConstructorToken(System::Reflection::ConstructorInfo ^ con);
public System.Reflection.Emit.MethodToken GetConstructorToken (System.Reflection.ConstructorInfo con);
[System.Runtime.InteropServices.ComVisible(true)]
public System.Reflection.Emit.MethodToken GetConstructorToken (System.Reflection.ConstructorInfo con);
member this.GetConstructorToken : System.Reflection.ConstructorInfo -> System.Reflection.Emit.MethodToken
[<System.Runtime.InteropServices.ComVisible(true)>]
member this.GetConstructorToken : System.Reflection.ConstructorInfo -> System.Reflection.Emit.MethodToken
Public Function GetConstructorToken (con As ConstructorInfo) As MethodToken

パラメーター

con
ConstructorInfo

トークンを取得するコンストラクター。

戻り値

このモジュール内で指定したコンストラクターの識別に使用したトークン。

属性

例外

connullです。

適用対象

GetConstructorToken(ConstructorInfo, IEnumerable<Type>)

このモジュール内の指定された属性とパラメーターの型を持つコンストラクターの識別に使用したトークンを返します。

public:
 System::Reflection::Emit::MethodToken GetConstructorToken(System::Reflection::ConstructorInfo ^ constructor, System::Collections::Generic::IEnumerable<Type ^> ^ optionalParameterTypes);
public System.Reflection.Emit.MethodToken GetConstructorToken (System.Reflection.ConstructorInfo constructor, System.Collections.Generic.IEnumerable<Type> optionalParameterTypes);
member this.GetConstructorToken : System.Reflection.ConstructorInfo * seq<Type> -> System.Reflection.Emit.MethodToken
Public Function GetConstructorToken (constructor As ConstructorInfo, optionalParameterTypes As IEnumerable(Of Type)) As MethodToken

パラメーター

constructor
ConstructorInfo

トークンを取得するコンストラクター。

optionalParameterTypes
IEnumerable<Type>

コンストラクターに対する省略可能なパラメーターの型のコレクション。

戻り値

このモジュール内で指定したコンストラクターの識別に使用したトークン。

例外

constructornullです。

適用対象