7 references to Failed
Microsoft.Extensions.DotNetDeltaApplier.Tests (7)
DefaultHotReloadClient.cs (3)
182return ApplyStatus.Failed; 221!success ? ApplyStatus.Failed : 266(appliedUpdateCount == 0) ? ApplyStatus.Failed :
HotReloadClients.cs (2)
122anyFailure = await singleClient.ApplyManagedCodeUpdatesAsync(updates, isProcessSuspended, cancellationToken) == ApplyStatus.Failed; 141case ApplyStatus.Failed:
HotReloadClientTests.cs (1)
138Assert.Equal(ApplyStatus.Failed, await test.Client.ApplyManagedCodeUpdatesAsync([update], isProcessSuspended: false, CancellationToken.None));
WebAssemblyHotReloadClient.cs (1)
126return (!anySuccess && anyFailure) ? ApplyStatus.Failed : (applicableUpdates.Count < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.AllChangesApplied;