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)); 164var columnsFirstCollectedSubscriber = new EventCallbackSubscriber<object?>(
6 references to EventCallbackSubscriber
Microsoft.AspNetCore.Components.QuickGrid (6)
Infrastructure\EventCallbackSubscribable.cs (3)
14private readonly Dictionary<EventCallbackSubscriber<T>, EventCallback<T>> _callbacks = new(); 28public void Subscribe(EventCallbackSubscriber<T> owner, EventCallback<T> callback) 32public void Unsubscribe(EventCallbackSubscriber<T> owner)
Pagination\Paginator.razor.cs (1)
13private readonly EventCallbackSubscriber<PaginationState> _totalItemCountChanged;
QuickGrid.razor.cs (2)
148private readonly EventCallbackSubscriber<PaginationState> _currentPageItemsChanged; 164var columnsFirstCollectedSubscriber = new EventCallbackSubscriber<object?>(