4 references to EventCallback
Microsoft.AspNetCore.Components (3)
EventCallbackFactory.cs (2)
95return new EventCallback<TValue>(callback.Receiver, callback.Delegate); 203return new EventCallback<TValue>(callback?.Target as IHandleEvent ?? receiver as IHandleEvent, callback);
EventCallbackOfT.cs (1)
16public static readonly EventCallback<TValue> Empty = new EventCallback<TValue>(null, (Action)(() => { }));
Microsoft.AspNetCore.Components.QuickGrid (1)
Pagination\Paginator.razor.cs (1)
36_totalItemCountChanged = new(new EventCallback<PaginationState>(this, null));