Compartir a través de


EventCallbackFactory.Create Método

Definición

Sobrecargas

Create(Object, EventCallback)

Devuelve el objeto proporcionado callback. Solo para uso interno del marco.

Create(Object, Action)

Crea un EventCallback para los proporcionados receiver y callback.

Create(Object, Action<Object>)

Crea un EventCallback para los proporcionados receiver y callback.

Create(Object, Func<Object,Task>)

Crea un EventCallback para los proporcionados receiver y callback.

Create(Object, Func<Task>)

Crea un EventCallback para los proporcionados receiver y callback.

Create<TValue>(Object, EventCallback)

Devuelve el objeto proporcionado callback. Solo para uso interno del marco.

Create<TValue>(Object, EventCallback<TValue>)

Devuelve el objeto proporcionado callback. Solo para uso interno del marco.

Create<TValue>(Object, Action)

Crea un EventCallback para los proporcionados receiver y callback.

Create<TValue>(Object, Action<TValue>)

Crea un EventCallback para los proporcionados receiver y callback.

Create<TValue>(Object, Func<Task>)

Crea un EventCallback para los proporcionados receiver y callback.

Create<TValue>(Object, Func<TValue,Task>)

Crea un EventCallback para los proporcionados receiver y callback.

Create(Object, EventCallback)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Devuelve el objeto proporcionado callback. Solo para uso interno del marco.

public:
 Microsoft::AspNetCore::Components::EventCallback Create(System::Object ^ receiver, Microsoft::AspNetCore::Components::EventCallback callback);
public Microsoft.AspNetCore.Components.EventCallback Create (object receiver, Microsoft.AspNetCore.Components.EventCallback callback);
member this.Create : obj * Microsoft.AspNetCore.Components.EventCallback -> Microsoft.AspNetCore.Components.EventCallback
Public Function Create (receiver As Object, callback As EventCallback) As EventCallback

Parámetros

receiver
Object
callback
EventCallback

Devoluciones

Se aplica a

Create(Object, Action)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
 Microsoft::AspNetCore::Components::EventCallback Create(System::Object ^ receiver, Action ^ callback);
public Microsoft.AspNetCore.Components.EventCallback Create (object receiver, Action callback);
member this.Create : obj * Action -> Microsoft.AspNetCore.Components.EventCallback
Public Function Create (receiver As Object, callback As Action) As EventCallback

Parámetros

receiver
Object

Receptor de eventos.

callback
Action

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a

Create(Object, Action<Object>)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
 Microsoft::AspNetCore::Components::EventCallback Create(System::Object ^ receiver, Action<System::Object ^> ^ callback);
public Microsoft.AspNetCore.Components.EventCallback Create (object receiver, Action<object> callback);
member this.Create : obj * Action<obj> -> Microsoft.AspNetCore.Components.EventCallback
Public Function Create (receiver As Object, callback As Action(Of Object)) As EventCallback

Parámetros

receiver
Object

Receptor de eventos.

callback
Action<Object>

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a

Create(Object, Func<Object,Task>)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
 Microsoft::AspNetCore::Components::EventCallback Create(System::Object ^ receiver, Func<System::Object ^, System::Threading::Tasks::Task ^> ^ callback);
public Microsoft.AspNetCore.Components.EventCallback Create (object receiver, Func<object,System.Threading.Tasks.Task> callback);
member this.Create : obj * Func<obj, System.Threading.Tasks.Task> -> Microsoft.AspNetCore.Components.EventCallback
Public Function Create (receiver As Object, callback As Func(Of Object, Task)) As EventCallback

Parámetros

receiver
Object

Receptor de eventos.

callback
Func<Object,Task>

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a

Create(Object, Func<Task>)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
 Microsoft::AspNetCore::Components::EventCallback Create(System::Object ^ receiver, Func<System::Threading::Tasks::Task ^> ^ callback);
public Microsoft.AspNetCore.Components.EventCallback Create (object receiver, Func<System.Threading.Tasks.Task> callback);
member this.Create : obj * Func<System.Threading.Tasks.Task> -> Microsoft.AspNetCore.Components.EventCallback
Public Function Create (receiver As Object, callback As Func(Of Task)) As EventCallback

Parámetros

receiver
Object

Receptor de eventos.

callback
Func<Task>

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a

Create<TValue>(Object, EventCallback)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Devuelve el objeto proporcionado callback. Solo para uso interno del marco.

public:
generic <typename TValue>
 Microsoft::AspNetCore::Components::EventCallback<TValue> Create(System::Object ^ receiver, Microsoft::AspNetCore::Components::EventCallback callback);
public Microsoft.AspNetCore.Components.EventCallback<TValue> Create<TValue> (object receiver, Microsoft.AspNetCore.Components.EventCallback callback);
member this.Create : obj * Microsoft.AspNetCore.Components.EventCallback -> Microsoft.AspNetCore.Components.EventCallback<'Value>
Public Function Create(Of TValue) (receiver As Object, callback As EventCallback) As EventCallback(Of TValue)

Parámetros de tipo

TValue

Parámetros

receiver
Object
callback
EventCallback

Devoluciones

Se aplica a

Create<TValue>(Object, EventCallback<TValue>)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Devuelve el objeto proporcionado callback. Solo para uso interno del marco.

public:
generic <typename TValue>
 Microsoft::AspNetCore::Components::EventCallback<TValue> Create(System::Object ^ receiver, Microsoft::AspNetCore::Components::EventCallback<TValue> callback);
public Microsoft.AspNetCore.Components.EventCallback<TValue> Create<TValue> (object receiver, Microsoft.AspNetCore.Components.EventCallback<TValue> callback);
member this.Create : obj * Microsoft.AspNetCore.Components.EventCallback<'Value> -> Microsoft.AspNetCore.Components.EventCallback<'Value>
Public Function Create(Of TValue) (receiver As Object, callback As EventCallback(Of TValue)) As EventCallback(Of TValue)

Parámetros de tipo

TValue

Parámetros

receiver
Object

Devoluciones

Se aplica a

Create<TValue>(Object, Action)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
generic <typename TValue>
 Microsoft::AspNetCore::Components::EventCallback<TValue> Create(System::Object ^ receiver, Action ^ callback);
public Microsoft.AspNetCore.Components.EventCallback<TValue> Create<TValue> (object receiver, Action callback);
member this.Create : obj * Action -> Microsoft.AspNetCore.Components.EventCallback<'Value>
Public Function Create(Of TValue) (receiver As Object, callback As Action) As EventCallback(Of TValue)

Parámetros de tipo

TValue

Parámetros

receiver
Object

Receptor de eventos.

callback
Action

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a

Create<TValue>(Object, Action<TValue>)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
generic <typename TValue>
 Microsoft::AspNetCore::Components::EventCallback<TValue> Create(System::Object ^ receiver, Action<TValue> ^ callback);
public Microsoft.AspNetCore.Components.EventCallback<TValue> Create<TValue> (object receiver, Action<TValue> callback);
member this.Create : obj * Action<'Value> -> Microsoft.AspNetCore.Components.EventCallback<'Value>
Public Function Create(Of TValue) (receiver As Object, callback As Action(Of TValue)) As EventCallback(Of TValue)

Parámetros de tipo

TValue

Parámetros

receiver
Object

Receptor de eventos.

callback
Action<TValue>

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a

Create<TValue>(Object, Func<Task>)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
generic <typename TValue>
 Microsoft::AspNetCore::Components::EventCallback<TValue> Create(System::Object ^ receiver, Func<System::Threading::Tasks::Task ^> ^ callback);
public Microsoft.AspNetCore.Components.EventCallback<TValue> Create<TValue> (object receiver, Func<System.Threading.Tasks.Task> callback);
member this.Create : obj * Func<System.Threading.Tasks.Task> -> Microsoft.AspNetCore.Components.EventCallback<'Value>
Public Function Create(Of TValue) (receiver As Object, callback As Func(Of Task)) As EventCallback(Of TValue)

Parámetros de tipo

TValue

Parámetros

receiver
Object

Receptor de eventos.

callback
Func<Task>

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a

Create<TValue>(Object, Func<TValue,Task>)

Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs
Source:
EventCallbackFactory.cs

Crea un EventCallback para los proporcionados receiver y callback.

public:
generic <typename TValue>
 Microsoft::AspNetCore::Components::EventCallback<TValue> Create(System::Object ^ receiver, Func<TValue, System::Threading::Tasks::Task ^> ^ callback);
public Microsoft.AspNetCore.Components.EventCallback<TValue> Create<TValue> (object receiver, Func<TValue,System.Threading.Tasks.Task> callback);
member this.Create : obj * Func<'Value, System.Threading.Tasks.Task> -> Microsoft.AspNetCore.Components.EventCallback<'Value>
Public Function Create(Of TValue) (receiver As Object, callback As Func(Of TValue, Task)) As EventCallback(Of TValue)

Parámetros de tipo

TValue

Parámetros

receiver
Object

Receptor de eventos.

callback
Func<TValue,Task>

Devolución de llamada del evento.

Devoluciones

EventCallback.

Se aplica a