< Summary

Class:Microsoft.Azure.ApplicationInsights.Query.Models.MetricsSegmentedResult
Assembly:Microsoft.Azure.ApplicationInsights.Query
File(s):C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Customized\Models\MetricsSegmentedResult.cs
Covered lines:0
Uncovered lines:3
Coverable lines:3
Total lines:25
Line coverage:0% (0 of 3)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_Start()-0%100%
get_End()-0%100%
get_Segments()-0%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Customized\Models\MetricsSegmentedResult.cs

#LineLine coverage
 1using System.Collections.Generic;
 2
 3namespace Microsoft.Azure.ApplicationInsights.Query.Models
 4{
 5    /// <summary>
 6    /// A segmented metric result data.
 7    /// </summary>
 8    public class MetricsSegmentedResult
 9    {
 10        /// <summary>
 11        /// Gets start time of the metric.
 12        /// </summary>
 013        public System.DateTime? Start { get; internal set; }
 14
 15        /// <summary>
 16        /// Gets start time of the metric.
 17        /// </summary>
 018        public System.DateTime? End { get; internal set; }
 19
 20        /// <summary>
 21        /// The segments of data
 22        /// </summary>
 023        public IList<IMetricsBaseSegmentInfo> Segments { get; internal set; }
 24    }
 25}

Methods/Properties

get_Start()
get_End()
get_Segments()