Table of Contents

Class HealthProviderBase

Namespace
Dynamicweb.Diagnostics.Health
Assembly
Dynamicweb.Core.dll

The base class for HealthProviders

public abstract class HealthProviderBase : ConfigurableAddIn
Inheritance
HealthProviderBase
Derived
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 specified check

public abstract Check? RunCheck(int checkId)

Parameters

checkId int

Returns

Check

The check performed and the corresponding results

To top