3 instantiations of EventCallbackSubscribable
Microsoft.AspNetCore.Components.QuickGrid (3)
Infrastructure\InternalGridContext.cs (1)
11
public EventCallbackSubscribable<object?> ColumnsFirstCollected { get; } =
new
();
Pagination\PaginationState.cs (2)
39
internal EventCallbackSubscribable<PaginationState> CurrentPageItemsChanged { get; } =
new
();
40
internal EventCallbackSubscribable<PaginationState> TotalItemCountChangedSubscribable { get; } =
new
();
9 references to EventCallbackSubscribable
Microsoft.AspNetCore.Components.QuickGrid (9)
Infrastructure\EventCallbackSubscriber.cs (6)
7
/// Represents a subscriber that may be subscribe to an <see cref="
EventCallbackSubscribable
{T}"/>.
8
/// The subscription can move between <see cref="
EventCallbackSubscribable
{T}"/> instances over time,
9
/// and automatically unsubscribes from earlier <see cref="
EventCallbackSubscribable
{T}"/> instances
15
private
EventCallbackSubscribable
<T>? _existingSubscription;
24
/// by first unsubscribing from the previous <see cref="
EventCallbackSubscribable
{T}"/>.
30
public void SubscribeOrMove(
EventCallbackSubscribable
<T>? subscribable)
Infrastructure\InternalGridContext.cs (1)
11
public
EventCallbackSubscribable
<object?> ColumnsFirstCollected { get; } = new();
Pagination\PaginationState.cs (2)
39
internal
EventCallbackSubscribable
<PaginationState> CurrentPageItemsChanged { get; } = new();
40
internal
EventCallbackSubscribable
<PaginationState> TotalItemCountChangedSubscribable { get; } = new();