5 references to AllChangesApplied
Microsoft.DotNet.HotReload.Client.Tests (5)
DefaultHotReloadClient.cs (3)
168
(applicableUpdates.Count < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.
AllChangesApplied
;
183
return ApplyStatus.
AllChangesApplied
;
213
(appliedUpdateCount < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.
AllChangesApplied
;
WebAssemblyHotReloadClient.cs (2)
99
return ApplyStatus.
AllChangesApplied
;
126
return (!anySuccess && anyFailure) ? ApplyStatus.Failed : (applicableUpdates.Count < updates.Length) ? ApplyStatus.SomeChangesApplied : ApplyStatus.
AllChangesApplied
;