HealthReport Constructors

Definition

Overloads

HealthReport()

Initializes a new instance of the HealthReport with default health status.

HealthReport(HealthMeter, String)

Initializes a new instance of the HealthReport indicating the state of health of the service.

HealthReport()

Initializes a new instance of the HealthReport with default health status.

public HealthReport ();
Public Sub New ()

Applies to

HealthReport(HealthMeter, String)

Initializes a new instance of the HealthReport indicating the state of health of the service.

public HealthReport (Microsoft.WindowsAzure.Mobile.Service.Diagnostics.HealthMeter health, string description);
new Microsoft.WindowsAzure.Mobile.Service.Models.HealthReport : Microsoft.WindowsAzure.Mobile.Service.Diagnostics.HealthMeter * string -> Microsoft.WindowsAzure.Mobile.Service.Models.HealthReport
Public Sub New (health As HealthMeter, description As String)

Parameters

health
HealthMeter

A HealthMeter value indicating the health of the service.

description
String

A description of the health of the service.

Applies to