10 references to PersistComponentStateRegistration
Microsoft.AspNetCore.Components (10)
Infrastructure\ComponentStatePersistenceManager.cs (3)
14
private readonly List<
PersistComponentStateRegistration
> _registeredCallbacks = new();
99
var
registration = _registeredCallbacks[i];
134
var
registration = _registeredCallbacks[i];
PersistentComponentState.cs (3)
18
private readonly List<
PersistComponentStateRegistration
> _registeredCallbacks;
22
List<
PersistComponentStateRegistration
> pauseCallbacks)
59
var
persistenceCallback = new PersistComponentStateRegistration(callback, renderMode);
PersistingComponentStateSubscription.cs (4)
14
private readonly List<
PersistComponentStateRegistration
>? _callbacks;
15
private readonly
PersistComponentStateRegistration
? _callback;
17
internal PersistingComponentStateSubscription(List<
PersistComponentStateRegistration
> callbacks,
PersistComponentStateRegistration
callback)