< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
get_Value()-0%100%

File(s)

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

#LineLine coverage
 1using System.Collections.Generic;
 2using Newtonsoft.Json;
 3
 4namespace Microsoft.Azure.ApplicationInsights.Query.Models
 5{
 6    /// <summary>
 7    /// A trace events query result.
 8    /// </summary>
 9    public class EventsTraceResults : EventsResults
 10    {
 11        /// <summary>
 12        /// Gets or sets contents of the events query result.
 13        /// </summary>
 14        [JsonProperty(PropertyName = "value")]
 015        public new IList<EventsTraceResult> Value { get; set; }
 16    }
 17}

Methods/Properties

get_Value()