Share via


HealthReport コンストラクター

定義

オーバーロード

HealthReport(IReadOnlyDictionary<String,HealthReportEntry>, TimeSpan)

指定した結果から新しい HealthReport を作成します。

HealthReport(IReadOnlyDictionary<String,HealthReportEntry>, HealthStatus, TimeSpan)

指定した結果から新しい HealthReport を作成します。

HealthReport(IReadOnlyDictionary<String,HealthReportEntry>, TimeSpan)

ソース:
HealthReport.cs
ソース:
HealthReport.cs
ソース:
HealthReport.cs
ソース:
HealthReport.cs
ソース:
HealthReport.cs

指定した結果から新しい HealthReport を作成します。

public:
 HealthReport(System::Collections::Generic::IReadOnlyDictionary<System::String ^, Microsoft::Extensions::Diagnostics::HealthChecks::HealthReportEntry> ^ entries, TimeSpan totalDuration);
public HealthReport (System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry> entries, TimeSpan totalDuration);
new Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport : System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry> * TimeSpan -> Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport
Public Sub New (entries As IReadOnlyDictionary(Of String, HealthReportEntry), totalDuration As TimeSpan)

パラメーター

entries
IReadOnlyDictionary<String,HealthReportEntry>

各正常性チェックの結果を含む IReadOnlyDictionary<TKey,TValue>

totalDuration
TimeSpan

正常性チェック サービスの実行にかかった時間を示す値。

適用対象

HealthReport(IReadOnlyDictionary<String,HealthReportEntry>, HealthStatus, TimeSpan)

ソース:
HealthReport.cs
ソース:
HealthReport.cs
ソース:
HealthReport.cs
ソース:
HealthReport.cs
ソース:
HealthReport.cs

指定した結果から新しい HealthReport を作成します。

public:
 HealthReport(System::Collections::Generic::IReadOnlyDictionary<System::String ^, Microsoft::Extensions::Diagnostics::HealthChecks::HealthReportEntry> ^ entries, Microsoft::Extensions::Diagnostics::HealthChecks::HealthStatus status, TimeSpan totalDuration);
public HealthReport (System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry> entries, Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus status, TimeSpan totalDuration);
new Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport : System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry> * Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus * TimeSpan -> Microsoft.Extensions.Diagnostics.HealthChecks.HealthReport
Public Sub New (entries As IReadOnlyDictionary(Of String, HealthReportEntry), status As HealthStatus, totalDuration As TimeSpan)

パラメーター

entries
IReadOnlyDictionary<String,HealthReportEntry>

各正常性チェックの結果を含む IReadOnlyDictionary<TKey,TValue>

status
HealthStatus

HealthStatusすべての正常性チェックの集計状態を表す 。

totalDuration
TimeSpan

正常性チェック サービスの実行にかかった時間を示す値。

適用対象