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 で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET