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
Colaborar con nosotros en GitHub
El origen de este contenido se puede encontrar en GitHub, donde también puede crear y revisar problemas y solicitudes de incorporación de cambios. Para más información, consulte nuestra guía para colaboradores.