Bearbeiten

IHealthCheckPublisher.PublishAsync(HealthReport, CancellationToken) Method

Definition

Publishes the provided report.

public:
 System::Threading::Tasks::Task ^ PublishAsync(Microsoft::Extensions::Diagnostics::HealthChecks::HealthReport ^ report, System::Threading::CancellationToken cancellationToken);
public System.Threading.Tasks.Task PublishAsync (Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport report, System.Threading.CancellationToken cancellationToken);
abstract member PublishAsync : Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Function PublishAsync (report As HealthReport, cancellationToken As CancellationToken) As Task

Parameters

report
HealthReport

The HealthReport. The result of executing a set of health checks.

cancellationToken
CancellationToken

The CancellationToken.

Returns

A Task which will complete when publishing is complete.

Exceptions

The cancellation token was canceled. This exception is stored into the returned task.

Applies to