ModuleBuilder.GetConstructorToken Metodo
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Restituisce il token utilizzato per identificare il costruttore specificato all'interno del modulo.
Overload
GetConstructorToken(ConstructorInfo) |
Restituisce il token utilizzato per identificare il costruttore specificato all'interno del modulo. |
GetConstructorToken(ConstructorInfo, IEnumerable<Type>) |
Restituisce il token utilizzato per identificare il costruttore che presenta gli attributi e i tipi di parametri specificati all'interno di questo modulo. |
GetConstructorToken(ConstructorInfo)
Restituisce il token utilizzato per identificare il costruttore specificato all'interno del modulo.
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
Parametri
- con
- ConstructorInfo
Costruttore per cui ottenere un token.
Restituisce
Token utilizzato per identificare il costruttore specificato all'interno del modulo.
- Attributi
Eccezioni
con
è null
.
Si applica a
GetConstructorToken(ConstructorInfo, IEnumerable<Type>)
Restituisce il token utilizzato per identificare il costruttore che presenta gli attributi e i tipi di parametri specificati all'interno di questo modulo.
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
Parametri
- constructor
- ConstructorInfo
Costruttore per cui ottenere un token.
- optionalParameterTypes
- IEnumerable<Type>
Raccolta di tipi di parametri facoltativi al costruttore.
Restituisce
Token utilizzato per identificare il costruttore specificato all'interno del modulo.
Eccezioni
constructor
è null
.