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