MethodInfo.CreateDelegate Método
Definição
Importante
Algumas informações se referem a produtos de pré-lançamento que podem ser substancialmente modificados antes do lançamento. A Microsoft não oferece garantias, expressas ou implícitas, das informações aqui fornecidas.
Cria um delegado desse método.
Sobrecargas
CreateDelegate(Type) |
Cria um delegado do tipo especificado desse método. |
CreateDelegate(Type, Object) |
Cria um delegado do tipo especificado com o destino especificado deste método. |
CreateDelegate<T>() |
Cria um delegado do tipo |
CreateDelegate<T>(Object) |
Cria um delegado do tipo |
CreateDelegate(Type)
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
Cria um delegado do tipo especificado desse 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
O tipo do delegado a criar.
Retornos
O delegado para esse método.
Aplica-se a
CreateDelegate(Type, Object)
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
Cria um delegado do tipo especificado com o destino especificado deste 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
O tipo do delegado a criar.
- target
- Object
O objeto almejado pelo delegado.
Retornos
O delegado para esse método.
Aplica-se a
CreateDelegate<T>()
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
Cria um delegado do tipo T
desse 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
O tipo do delegado a criar.
Retornos
O delegado para esse método.
Aplica-se a
CreateDelegate<T>(Object)
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
- Origem:
- MethodInfo.cs
Cria um delegado do tipo T
com o destino especificado neste 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
O tipo do delegado a criar.
Parâmetros
- target
- Object
O objeto almejado pelo delegado.
Retornos
O delegado para esse método.