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