MethodInfo.CreateDelegate Método
Definición
Importante
Parte de la información hace referencia a la versión preliminar del producto, que puede haberse modificado sustancialmente antes de lanzar la versión definitiva. Microsoft no otorga ninguna garantía, explícita o implícita, con respecto a la información proporcionada aquí.
Crea un delegado a partir de este método.
Sobrecargas
CreateDelegate(Type) |
Crea un delegado del tipo especificado a partir de este método. |
CreateDelegate(Type, Object) |
Crea un delegado del tipo especificado con el destino especificado a partir de este método. |
CreateDelegate<T>() |
Crea un delegado de tipo |
CreateDelegate<T>(Object) |
Crea un delegado de tipo |
CreateDelegate(Type)
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
Crea un delegado del tipo especificado a partir de este método.
public:
virtual Delegate ^ CreateDelegate(Type ^ delegateType);
public virtual Delegate CreateDelegate (Type delegateType);
abstract member CreateDelegate : Type -> Delegate
override this.CreateDelegate : Type -> Delegate
Public Overridable Function CreateDelegate (delegateType As Type) As Delegate
Parámetros
- delegateType
- Type
Tipo del delegado que se va a crear.
Devoluciones
Delegado para este método.
Se aplica a
CreateDelegate(Type, Object)
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
Crea un delegado del tipo especificado con el destino especificado a partir de este método.
public:
virtual Delegate ^ CreateDelegate(Type ^ delegateType, System::Object ^ target);
public virtual Delegate CreateDelegate (Type delegateType, object target);
public virtual Delegate CreateDelegate (Type delegateType, object? target);
abstract member CreateDelegate : Type * obj -> Delegate
override this.CreateDelegate : Type * obj -> Delegate
Public Overridable Function CreateDelegate (delegateType As Type, target As Object) As Delegate
Parámetros
- delegateType
- Type
Tipo del delegado que se va a crear.
- target
- Object
El objeto de destino por parte del delegado.
Devoluciones
Delegado para este método.
Se aplica a
CreateDelegate<T>()
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
Crea un delegado de tipo T
a partir de este método.
public:
generic <typename T>
where T : Delegate T CreateDelegate();
public T CreateDelegate<T> () where T : Delegate;
member this.CreateDelegate : unit -> 'T (requires 'T :> Delegate)
Public Function CreateDelegate(Of T As Delegate) () As T
Parámetros de tipo
- T
Tipo del delegado que se va a crear.
Devoluciones
Delegado para este método.
Se aplica a
CreateDelegate<T>(Object)
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
- Source:
- MethodInfo.cs
Crea un delegado de tipo T
con el destino especificado a partir de este método.
public:
generic <typename T>
where T : Delegate T CreateDelegate(System::Object ^ target);
public T CreateDelegate<T> (object? target) where T : Delegate;
member this.CreateDelegate : obj -> 'T (requires 'T :> Delegate)
Public Function CreateDelegate(Of T As Delegate) (target As Object) As T
Parámetros de tipo
- T
Tipo del delegado que se va a crear.
Parámetros
- target
- Object
El objeto de destino por parte del delegado.
Devoluciones
Delegado para este método.