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)
39return _renderer.Dispatcher;
RenderTree\Renderer.cs (13)
67Dispatcher.UnhandledException += value; 71Dispatcher.UnhandledException -= value; 217await Dispatcher.InvokeAsync(() => 316Dispatcher.AssertAccess(); 347Dispatcher.AssertAccess(); 481Dispatcher.AssertAccess(); 706Dispatcher.AssertAccess(); 748Dispatcher.AssertAccess(); 832Dispatcher.AssertAccess(); 1186Dispatcher.AssertAccess(); 1249if (!Dispatcher.CheckAccess()) 1255var done = Dispatcher.InvokeAsync(() => Dispose(disposing)); 1396await Dispatcher.InvokeAsync(Dispose);