Table of Contents

Class Check

Namespace
Dynamicweb.Diagnostics.Health
Assembly
Dynamicweb.Diagnostics.dll
The class Check provides information about the health checking if things work/>
public class Check
Inheritance
Check
Inherited Members

Properties

CheckDetails

Gets or sets additional check details, i.e. list of corrupted products.
public IEnumerable<CheckDetail> CheckDetails { get; set; }

Property Value

IEnumerable<CheckDetail>

CheckWhatWasRun

Field that can contain very raw and ugly things, i.e. the SQL that was executed - can be helpful to find out what is wrong
public string CheckWhatWasRun { get; set; }

Property Value

string

Count

Could be the count of things that are wrong or a count of the things that are OK
public int Count { get; set; }

Property Value

int

Description

Gets or sets the description.
public string Description { get; set; }

Property Value

string

Id

Gets or sets the id.
public int Id { get; set; }

Property Value

int

Name

Gets or sets the name.
public string Name { get; set; }

Property Value

string

State

Check state, i.e. "OK", "Warning", "Error", "Fatal"
public CheckState State { get; set; }

Property Value

CheckState
To top