15 references to InteractiveServer
Microsoft.AspNetCore.Components.Endpoints (13)
_generated\19\BrowserOptionsJsonContext.BrowserOptions.g.cs (2)
101Getter = static obj => ((global::Microsoft.AspNetCore.Components.BrowserOptions)obj).InteractiveServer, 163global::Microsoft.AspNetCore.Components.InteractiveServerBrowserOptions __value_InteractiveServer = ((global::Microsoft.AspNetCore.Components.BrowserOptions)value).InteractiveServer;
BrowserConfiguration\ConfigureBrowser.cs (11)
58target.InteractiveServer.ReconnectionMaxRetries = source.InteractiveServer.ReconnectionMaxRetries ?? target.InteractiveServer.ReconnectionMaxRetries; 59target.InteractiveServer.ReconnectionRetryInterval = source.InteractiveServer.ReconnectionRetryInterval ?? target.InteractiveServer.ReconnectionRetryInterval; 60target.InteractiveServer.ReconnectionDialogId = source.InteractiveServer.ReconnectionDialogId ?? target.InteractiveServer.ReconnectionDialogId; 61foreach (var kvp in source.InteractiveServer.Extensions) 63target.InteractiveServer.Extensions[kvp.Key] = kvp.Value;
Microsoft.AspNetCore.Components.Server.AutoPause (2)
AutoPauseBrowserOptionsExtensions.cs (2)
36options.InteractiveServer.Extensions["autoPauseEnabled"] = JsonSerializer.SerializeToElement(settings.Enabled, AutoPauseJsonContext.Default.Boolean); 37options.InteractiveServer.Extensions["autoPauseHiddenDelayMilliseconds"] = JsonSerializer.SerializeToElement((long)delayMilliseconds, AutoPauseJsonContext.Default.Int64);