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

Конструктор, для которого нужно получить токен.

Возвращаемое значение

Токен, используемый для идентификации указанного конструктора в данном модуле.

Атрибуты

Исключения

con имеет значение null.

Применяется к

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>

Коллекция типов необязательных параметров для конструктора.

Возвращаемое значение

Токен, используемый для идентификации указанного конструктора в данном модуле.

Исключения

constructor имеет значение null.

Применяется к