2 overrides of Dispatcher
Microsoft.AspNetCore.Components.Server (1)
Circuits\RemoteRenderer.cs (1)
62public override Dispatcher Dispatcher { get; } = Dispatcher.CreateDefault();
Microsoft.AspNetCore.Components.Web (1)
HtmlRendering\StaticHtmlRenderer.cs (1)
40public override Dispatcher Dispatcher { get; } = Dispatcher.CreateDefault();
17 references to Dispatcher
Microsoft.AspNetCore.Components (17)
CascadingValueSource.cs (2)
165Dispatcher dispatcher = subscriber.Renderer.Dispatcher; 174Dispatcher dispatcher = subscriber.Renderer.Dispatcher;
PersistentState\ComponentStatePersistenceManager.cs (1)
107return renderer.Dispatcher.InvokeAsync(PauseAndPersistState);
RenderHandle.cs (1)
39return _renderer.Dispatcher;
RenderTree\Renderer.cs (13)
66Dispatcher.UnhandledException += value; 70Dispatcher.UnhandledException -= value; 203await Dispatcher.InvokeAsync(() => 301Dispatcher.AssertAccess(); 332Dispatcher.AssertAccess(); 466Dispatcher.AssertAccess(); 691Dispatcher.AssertAccess(); 733Dispatcher.AssertAccess(); 817Dispatcher.AssertAccess(); 1171Dispatcher.AssertAccess(); 1234if (!Dispatcher.CheckAccess()) 1240var done = Dispatcher.InvokeAsync(() => Dispose(disposing)); 1381await Dispatcher.InvokeAsync(Dispose);