HealthReportEntry Costruttori
Definizione
Importante
Alcune informazioni sono relative alla release non definitiva del prodotto, che potrebbe subire modifiche significative prima della release definitiva. Microsoft non riconosce alcuna garanzia, espressa o implicita, in merito alle informazioni qui fornite.
Overload
HealthReportEntry(HealthStatus, String, TimeSpan, Exception, IReadOnlyDictionary<String,Object>) |
Crea un nuovo oggetto HealthReportEntry con i valori specificati per |
HealthReportEntry(HealthStatus, String, TimeSpan, Exception, IReadOnlyDictionary<String,Object>, IEnumerable<String>) |
Crea un nuovo oggetto HealthReportEntry con i valori specificati per |
HealthReportEntry(HealthStatus, String, TimeSpan, Exception, IReadOnlyDictionary<String,Object>)
- Origine:
- HealthReportEntry.cs
- Origine:
- HealthReportEntry.cs
Crea un nuovo oggetto HealthReportEntry con i valori specificati per status
, exception
, description
e data
.
public:
HealthReportEntry(Microsoft::Extensions::Diagnostics::HealthChecks::HealthStatus status, System::String ^ description, TimeSpan duration, Exception ^ exception, System::Collections::Generic::IReadOnlyDictionary<System::String ^, System::Object ^> ^ data);
public HealthReportEntry (Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus status, string? description, TimeSpan duration, Exception? exception, System.Collections.Generic.IReadOnlyDictionary<string,object>? data);
new Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry : Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus * string * TimeSpan * Exception * System.Collections.Generic.IReadOnlyDictionary<string, obj> -> Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry
Public Sub New (status As HealthStatus, description As String, duration As TimeSpan, exception As Exception, data As IReadOnlyDictionary(Of String, Object))
Parametri
- status
- HealthStatus
Valore che indica lo stato di integrità del componente controllato.
- description
- String
Descrizione leggibile dello stato del componente controllato.
- duration
- TimeSpan
Valore che indica la durata dell'esecuzione del controllo integrità.
- exception
- Exception
Oggetto Exception che rappresenta l'eccezione generata durante il controllo dello stato (se presente).
- data
- IReadOnlyDictionary<String,Object>
Coppie chiave-valore aggiuntive che descrivono l'integrità del componente.
Si applica a
HealthReportEntry(HealthStatus, String, TimeSpan, Exception, IReadOnlyDictionary<String,Object>, IEnumerable<String>)
- Origine:
- HealthReportEntry.cs
- Origine:
- HealthReportEntry.cs
Crea un nuovo oggetto HealthReportEntry con i valori specificati per status
, exception
, description
e data
.
public HealthReportEntry (Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus status, string? description, TimeSpan duration, Exception? exception, System.Collections.Generic.IReadOnlyDictionary<string,object>? data, System.Collections.Generic.IEnumerable<string>? tags = default);
new Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry : Microsoft.Extensions.Diagnostics.HealthChecks.HealthStatus * string * TimeSpan * Exception * System.Collections.Generic.IReadOnlyDictionary<string, obj> * seq<string> -> Microsoft.Extensions.Diagnostics.HealthChecks.HealthReportEntry
Public Sub New (status As HealthStatus, description As String, duration As TimeSpan, exception As Exception, data As IReadOnlyDictionary(Of String, Object), Optional tags As IEnumerable(Of String) = Nothing)
Parametri
- status
- HealthStatus
Valore che indica lo stato di integrità del componente controllato.
- description
- String
Descrizione leggibile dello stato del componente controllato.
- duration
- TimeSpan
Valore che indica la durata dell'esecuzione del controllo integrità.
- exception
- Exception
Oggetto Exception che rappresenta l'eccezione generata durante il controllo dello stato (se presente).
- data
- IReadOnlyDictionary<String,Object>
Coppie chiave-valore aggiuntive che descrivono l'integrità del componente.
- tags
- IEnumerable<String>
Tag associati al controllo integrità che ha generato la voce del report.