11 references to PersistComponentStateRegistration
Microsoft.AspNetCore.Components (11)
PersistentComponentState.cs (3)
18
private readonly List<
PersistComponentStateRegistration
> _registeredCallbacks;
22
List<
PersistComponentStateRegistration
> pauseCallbacks)
64
var
persistenceCallback = new PersistComponentStateRegistration(callback, renderMode);
PersistentState\ComponentStatePersistenceManager.cs (4)
14
private readonly List<
PersistComponentStateRegistration
> _registeredCallbacks = new();
45
internal List<
PersistComponentStateRegistration
> RegisteredCallbacks => _registeredCallbacks;
150
var
registration = _registeredCallbacks[i];
191
var
registration = _registeredCallbacks[i];
PersistingComponentStateSubscription.cs (4)
14
private readonly List<
PersistComponentStateRegistration
>? _callbacks;
15
private readonly
PersistComponentStateRegistration
? _callback;
17
internal PersistingComponentStateSubscription(List<
PersistComponentStateRegistration
> callbacks,
PersistComponentStateRegistration
callback)