2 overrides of ApplyManagedCodeUpdatesAsync
dotnet-watch (2)
DefaultHotReloadClient.cs (1)
127
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)
HotReload\HotReloadClients.cs (2)
84
anyFailure = await singleClient.
ApplyManagedCodeUpdatesAsync
(updates, isProcessSuspended, cancellationToken) == ApplyStatus.Failed;
94
var results = await Task.WhenAll(clients.Select(c => c.client.
ApplyManagedCodeUpdatesAsync
(updates, isProcessSuspended, cancellationToken)));