Point Constructors

Definition

Overloads

Point()

Initializes a new instance of the Point class.

Point(DateTime, Double)

Initializes a new instance of the Point class.

Point()

Source:
Point.cs

Initializes a new instance of the Point class.

public Point ();
Public Sub New ()

Applies to

Point(DateTime, Double)

Source:
Point.cs

Initializes a new instance of the Point class.

public Point (DateTime timestamp, double value);
new Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.Point : DateTime * double -> Microsoft.Azure.CognitiveServices.AnomalyDetector.Models.Point
Public Sub New (timestamp As DateTime, value As Double)

Parameters

timestamp
DateTime

Timestamp of a data point (ISO8601 format).

value
Double

The measurement of that point, should be float.

Applies to