3 instantiations of EventCallbackSubscriber
Microsoft.AspNetCore.Components.QuickGrid (3)
Pagination\Paginator.razor.cs (1)
31
_totalItemCountChanged =
new
(new EventCallback<PaginationState>(this, null));
QuickGrid.razor.cs (2)
157
_currentPageItemsChanged =
new
(EventCallback.Factory.Create<PaginationState>(this, RefreshDataCoreAsync));
164
var columnsFirstCollectedSubscriber = new
EventCallbackSubscriber
<object?>(
6 references to EventCallbackSubscriber
Microsoft.AspNetCore.Components.QuickGrid (6)
Infrastructure\EventCallbackSubscribable.cs (3)
14
private readonly Dictionary<
EventCallbackSubscriber
<T>, EventCallback<T>> _callbacks = new();
28
public void Subscribe(
EventCallbackSubscriber
<T> owner, EventCallback<T> callback)
32
public void Unsubscribe(
EventCallbackSubscriber
<T> owner)
Pagination\Paginator.razor.cs (1)
13
private readonly
EventCallbackSubscriber
<PaginationState> _totalItemCountChanged;
QuickGrid.razor.cs (2)
148
private readonly
EventCallbackSubscriber
<PaginationState> _currentPageItemsChanged;
164
var
columnsFirstCollectedSubscriber = new EventCallbackSubscriber<object?>(