PerfMonSample Constructors

Definition

Overloads

PerfMonSample()

Initializes a new instance of the PerfMonSample class.

PerfMonSample(Nullable<DateTime>, String, Nullable<Double>)

Initializes a new instance of the PerfMonSample class.

PerfMonSample()

Initializes a new instance of the PerfMonSample class.

public PerfMonSample ();
Public Sub New ()

Applies to

PerfMonSample(Nullable<DateTime>, String, Nullable<Double>)

Initializes a new instance of the PerfMonSample class.

public PerfMonSample (DateTime? time = default, string instanceName = default, double? value = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.PerfMonSample : Nullable<DateTime> * string * Nullable<double> -> Microsoft.Azure.Management.AppService.Fluent.Models.PerfMonSample
Public Sub New (Optional time As Nullable(Of DateTime) = Nothing, Optional instanceName As String = Nothing, Optional value As Nullable(Of Double) = Nothing)

Parameters

time
Nullable<DateTime>

Point in time for which counter was measured.

instanceName
String

Name of the server on which the measurement is made.

value
Nullable<Double>

Value of counter at a certain time.

Applies to