IHealthCheckPublisher.PublishAsync(HealthReport, CancellationToken) Method
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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
Співпраця з нами на GitHub
Джерело цього вмісту можна знайти на GitHub, де також можна створювати й переглядати запитання та запити на внесення змін. Докладні відомості наведено в нашому посібнику для співавторів.