1 instantiation of HealthCheckResult
Aspire.Hosting.Tests (1)
AtsHealthCheckExportsTests.cs (1)
19
builder.AddHealthCheck("custom_check", () => Task.FromResult(new
AtsHealthCheckResult
3 references to HealthCheckResult
Aspire.Hosting (2)
Ats\HealthCheckExports.cs (2)
22
public static void AddHealthCheck(this IDistributedApplicationBuilder builder, string name, Func<Task<
HealthCheckResult
>> check)
30
var
result = await check().ConfigureAwait(false);
Aspire.Hosting.Tests (1)
AtsHealthCheckExportsTests.cs (1)
7
using AtsHealthCheckResult = Aspire.Hosting.Ats.
HealthCheckResult
;