3 instantiations of EventCallbackWorkItem
Microsoft.AspNetCore.Components (3)
EventCallback.cs (1)
60
return Receiver.HandleEventAsync(new
EventCallbackWorkItem
(Delegate), arg);
EventCallbackOfT.cs (1)
55
return Receiver.HandleEventAsync(new
EventCallbackWorkItem
(Delegate), arg);
EventCallbackWorkItem.cs (1)
16
public static readonly EventCallbackWorkItem Empty = new
EventCallbackWorkItem
(null);
9 references to EventCallbackWorkItem
Microsoft.AspNetCore.Components (9)
ComponentBase.cs (1)
355
Task IHandleEvent.HandleEventAsync(
EventCallbackWorkItem
callback, object? arg)
EventCallback.cs (1)
57
return
EventCallbackWorkItem
.InvokeAsync<object?>(Delegate, arg);
EventCallbackOfT.cs (1)
52
return
EventCallbackWorkItem
.InvokeAsync<TValue?>(Delegate, arg);
EventCallbackWorkItem.cs (4)
14
/// An empty <see cref="
EventCallbackWorkItem
"/>.
16
public static readonly
EventCallbackWorkItem
Empty = new EventCallbackWorkItem(null);
21
/// Creates a new <see cref="
EventCallbackWorkItem
"/> with the provided <paramref name="delegate"/>.
30
/// Invokes the delegate associated with this <see cref="
EventCallbackWorkItem
"/>.
IHandleEvent.cs (2)
14
/// <param name="item">The <see cref="
EventCallbackWorkItem
"/> associated with this event.</param>
19
Task HandleEventAsync(
EventCallbackWorkItem
item, object? arg);