2 overrides of ApplyManagedCodeUpdatesAsync
dotnet-watch (2)
DefaultHotReloadClient.cs (1)
175
public override async Task<ApplyStatus>
ApplyManagedCodeUpdatesAsync
(ImmutableArray<HotReloadManagedCodeUpdate> updates, bool isProcessSuspended, CancellationToken cancellationToken)
WebAssemblyHotReloadClient.cs (1)
88
public override async Task<ApplyStatus>
ApplyManagedCodeUpdatesAsync
(ImmutableArray<HotReloadManagedCodeUpdate> updates, bool isProcessSuspended, CancellationToken cancellationToken)
2 references to ApplyManagedCodeUpdatesAsync
dotnet-watch (2)
HotReloadClients.cs (2)
122
anyFailure = await singleClient.
ApplyManagedCodeUpdatesAsync
(updates, isProcessSuspended, cancellationToken) == ApplyStatus.Failed;
132
var results = await Task.WhenAll(clients.Select(c => c.client.
ApplyManagedCodeUpdatesAsync
(updates, isProcessSuspended, cancellationToken)));