Share via


MetricsResultInfo Constructors

Definition

Overloads

MetricsResultInfo()

Initializes a new instance of the MetricsResultInfo class.

MetricsResultInfo(IDictionary<String,Object>, Nullable<DateTime>, Nullable<DateTime>, Nullable<TimeSpan>, IList<MetricsSegmentInfo>)

Initializes a new instance of the MetricsResultInfo class.

MetricsResultInfo()

Source:
MetricsResultInfo.cs

Initializes a new instance of the MetricsResultInfo class.

public MetricsResultInfo ();
Public Sub New ()

Applies to

MetricsResultInfo(IDictionary<String,Object>, Nullable<DateTime>, Nullable<DateTime>, Nullable<TimeSpan>, IList<MetricsSegmentInfo>)

Source:
MetricsResultInfo.cs

Initializes a new instance of the MetricsResultInfo class.

public MetricsResultInfo (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, DateTime? start = default, DateTime? end = default, TimeSpan? interval = default, System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentInfo> segments = default);
new Microsoft.Azure.ApplicationInsights.Query.Models.MetricsResultInfo : System.Collections.Generic.IDictionary<string, obj> * Nullable<DateTime> * Nullable<DateTime> * Nullable<TimeSpan> * System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentInfo> -> Microsoft.Azure.ApplicationInsights.Query.Models.MetricsResultInfo
Public Sub New (Optional additionalProperties As IDictionary(Of String, Object) = Nothing, Optional start As Nullable(Of DateTime) = Nothing, Optional end As Nullable(Of DateTime) = Nothing, Optional interval As Nullable(Of TimeSpan) = Nothing, Optional segments As IList(Of MetricsSegmentInfo) = Nothing)

Parameters

additionalProperties
IDictionary<String,Object>

Unmatched properties from the message are deserialized this collection

start
Nullable<DateTime>

Start time of the metric.

end
Nullable<DateTime>

Start time of the metric.

interval
Nullable<TimeSpan>

The interval used to segment the metric data.

segments
IList<MetricsSegmentInfo>

Segmented metric data (if segmented).

Applies to