HealthReport.Entries Property

Definition

A IReadOnlyDictionary<TKey,TValue> containing the results from each health check.

public:
 property System::Collections::Generic::IReadOnlyDictionary<System::String ^, Microsoft::Extensions::Diagnostics::HealthChecks::HealthReportEntry> ^ Entries { System::Collections::Generic::IReadOnlyDictionary<System::String ^, Microsoft::Extensions::Diagnostics::HealthChecks::HealthReportEntry> ^ get(); };
public System.Collections.Generic.IReadOnlyDictionary<string,Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry> Entries { get; }
member this.Entries : System.Collections.Generic.IReadOnlyDictionary<string, Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry>
Public ReadOnly Property Entries As IReadOnlyDictionary(Of String, HealthReportEntry)

Property Value

Remarks

The keys in this dictionary map the name of each executed health check to a HealthReportEntry for the result data returned from the corresponding health check.

Applies to