Class HealthCheckStatus
The status returned for a health check when it performs it check TODO: This model will be used in the WebApi result so needs attributes for JSON usage
Inheritance
System.Object
Namespace: Umbraco.Cms.Core.HealthChecks
Assembly: Umbraco.Core.dll
Syntax
public class HealthCheckStatus : object
Constructors
View SourceHealthCheckStatus(String)
Declaration
public HealthCheckStatus(string message)
Parameters
Type | Name | Description |
---|---|---|
System. |
message |
Properties
View SourceActions
The potential actions to take (in any)
Declaration
public IEnumerable<HealthCheckAction> Actions { get; set; }
Property Value
Type | Description |
---|---|
IEnumerable<Health |
Description
The status description if one is necessary
Declaration
public string Description { get; set; }
Property Value
Type | Description |
---|---|
System. |
Message
The status message
Declaration
public string Message { get; }
Property Value
Type | Description |
---|---|
System. |
ReadMoreLink
This is optional but would allow a developer to specify a link that is shown as a "read more" button.
Declaration
public string ReadMoreLink { get; set; }
Property Value
Type | Description |
---|---|
System. |
ResultType
The status type
Declaration
public StatusResultType ResultType { get; set; }
Property Value
Type | Description |
---|---|
Status |
View
This is optional but would allow a developer to specify a path to an angular HTML view in order to either show more advanced information and/or to provide input for the admin to configure how an action is executed
Declaration
public string View { get; set; }
Property Value
Type | Description |
---|---|
System. |