ModuleBuilder.GetConstructorToken Méthode

Définition

Retourne le jeton servant à identifier le constructeur spécifié dans ce module.

Surcharges

GetConstructorToken(ConstructorInfo)

Retourne le jeton servant à identifier le constructeur spécifié dans ce module.

GetConstructorToken(ConstructorInfo, IEnumerable<Type>)

Retourne le jeton utilisé pour identifier le constructeur qui possède les attributs spécifiés et les types de paramètres dans ce module.

GetConstructorToken(ConstructorInfo)

Retourne le jeton servant à identifier le constructeur spécifié dans ce module.

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

Paramètres

con
ConstructorInfo

Constructeur pour lequel un jeton doit être obtenu.

Retours

Jeton servant à identifier le constructeur spécifié dans ce module.

Attributs

Exceptions

con a la valeur null.

S’applique à

GetConstructorToken(ConstructorInfo, IEnumerable<Type>)

Retourne le jeton utilisé pour identifier le constructeur qui possède les attributs spécifiés et les types de paramètres dans ce module.

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

Paramètres

constructor
ConstructorInfo

Constructeur pour lequel un jeton doit être obtenu.

optionalParameterTypes
IEnumerable<Type>

Collection de types des paramètres facultatifs au constructeur.

Retours

Jeton servant à identifier le constructeur spécifié dans ce module.

Exceptions

constructor a la valeur null.

S’applique à