< Summary

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

Metrics

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

File(s)

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

#LineLine coverage
 1namespace Microsoft.Azure.ApplicationInsights.Query.Models
 2{
 3    using System.Collections.Generic;
 4
 5    /// <summary>
 6    /// An intervaled metric result data.
 7    /// </summary>
 8    public class MetricsIntervaledResult
 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 interval used to segment the data.
 22        /// </summary>
 023        public System.TimeSpan? Interval { get; internal set; }
 24
 25        /// <summary>
 26        /// The intervals of data.
 27        /// </summary>
 028        public IList<MetricsIntervaledData> Intervals { get; internal set; }
 29    }
 30}