Sdílet prostřednictvím


HealthReport Konstruktory

Definice

Přetížení

HealthReport(IReadOnlyDictionary<String,HealthReportEntry>, TimeSpan)

Vytvořte nový HealthReport ze zadaných výsledků.

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

Vytvořte nový HealthReport ze zadaných výsledků.

HealthReport(IReadOnlyDictionary<String,HealthReportEntry>, TimeSpan)

Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs

Vytvořte nový HealthReport ze zadaných výsledků.

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)

Parametry

entries
IReadOnlyDictionary<String,HealthReportEntry>

A IReadOnlyDictionary<TKey,TValue> obsahující výsledky každé kontroly stavu.

totalDuration
TimeSpan

Hodnota označující čas, který trvalo spuštění služby kontroly stavu.

Platí pro

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

Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs
Zdroj:
HealthReport.cs

Vytvořte nový HealthReport ze zadaných výsledků.

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)

Parametry

entries
IReadOnlyDictionary<String,HealthReportEntry>

A IReadOnlyDictionary<TKey,TValue> obsahující výsledky každé kontroly stavu.

status
HealthStatus

A HealthStatus představující agregovaný stav všech kontrol stavu.

totalDuration
TimeSpan

Hodnota označující čas, který trvalo spuštění služby kontroly stavu.

Platí pro