4 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();
Microsoft.AspNetCore.Components.WebAssembly (1)
Rendering\WebAssemblyRenderer.cs (1)
118public override Dispatcher Dispatcher => _dispatcher;
Microsoft.AspNetCore.Components.WebView (1)
Services\WebViewRenderer.cs (1)
35public override Dispatcher Dispatcher => _dispatcher;
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)
41return _renderer.Dispatcher;
RenderTree\Renderer.cs (13)
70Dispatcher.UnhandledException += value; 74Dispatcher.UnhandledException -= value; 223await Dispatcher.InvokeAsync(() => 322Dispatcher.AssertAccess(); 353Dispatcher.AssertAccess(); 487Dispatcher.AssertAccess(); 712Dispatcher.AssertAccess(); 754Dispatcher.AssertAccess(); 838Dispatcher.AssertAccess(); 1192Dispatcher.AssertAccess(); 1255if (!Dispatcher.CheckAccess()) 1261var done = Dispatcher.InvokeAsync(() => Dispose(disposing)); 1402await Dispatcher.InvokeAsync(Dispose);