1 instantiation of HotReloadAgent
Microsoft.AspNetCore.Components.WebAssembly (1)
HotReload\HotReloadAgent.cs (1)
48agent = new HotReloadAgent(reporter, applyUpdate, capabilities);
8 references to HotReloadAgent
Microsoft.AspNetCore.Components.WebAssembly (8)
HotReload\HotReloadAgent.cs (1)
43public static bool TryCreate(AgentReporter reporter, [NotNullWhen(true)] out HotReloadAgent? agent)
HotReload\WebAssemblyHotReload.cs (7)
63private static HotReloadAgent? s_hotReloadAgent; 72if (!HotReloadAgent.TryCreate(s_reporter, out var agent)) 77var existingAgent = Interlocked.CompareExchange(ref s_hotReloadAgent, agent, null); 87private static async ValueTask ApplyPreviousDeltasAsync(HotReloadAgent agent) 133private static HotReloadAgent? GetAgent() 153var agent = GetAgent();