Table of Contents

Class HealthProviderBase

Namespace
Dynamicweb.Diagnostics.Health
Assembly
Dynamicweb.Diagnostics.dll
The base class for HealthProviders
public abstract class HealthProviderBase : ConfigurableAddIn
Inheritance
HealthProviderBase
Inherited Members

Methods

GetCheckList()

Gets list of the supported checks
public abstract IEnumerable<Check> GetCheckList()

Returns

IEnumerable<Check>
A list of the supported checks

RunCheck(int)

Running a speified check
public abstract Check RunCheck(int checkId)

Parameters

checkId int

Returns

Check
The check performed and the corresponding results
To top