Share via


MetricsSegmentInfo Constructors

Definition

Overloads

MetricsSegmentInfo()

Initializes a new instance of the MetricsSegmentInfo class.

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

Initializes a new instance of the MetricsSegmentInfo class.

MetricsSegmentInfo()

Source:
MetricsSegmentInfo.cs

Initializes a new instance of the MetricsSegmentInfo class.

public MetricsSegmentInfo ();
Public Sub New ()

Applies to

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

Source:
MetricsSegmentInfo.cs

Initializes a new instance of the MetricsSegmentInfo class.

public MetricsSegmentInfo (System.Collections.Generic.IDictionary<string,object> additionalProperties = default, DateTime? start = default, DateTime? end = default, System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentInfo> segments = default);
new Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentInfo : System.Collections.Generic.IDictionary<string, obj> * Nullable<DateTime> * Nullable<DateTime> * System.Collections.Generic.IList<Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentInfo> -> Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentInfo
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 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 segment (only when an interval was specified).

end
Nullable<DateTime>

Start time of the metric segment (only when an interval was specified).

segments
IList<MetricsSegmentInfo>

Segmented metric data (if further segmented).

Applies to