< Summary

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

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_BrowserTiming()-100%100%
get_ClientPerformance()-0%100%

File(s)

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

#LineLine coverage
 1// <auto-generated>
 2// Copyright (c) Microsoft Corporation. All rights reserved.
 3// Licensed under the MIT License. See License.txt in the project root for
 4// license information.
 5//
 6// Code generated by Microsoft (R) AutoRest Code Generator.
 7// Changes may cause incorrect behavior and will be lost if the code is
 8// regenerated.
 9// </auto-generated>
 10
 11namespace Microsoft.Azure.ApplicationInsights.Query.Models
 12{
 13    using Newtonsoft.Json;
 14    using System.Linq;
 15
 16    /// <summary>
 17    /// A browser timing result
 18    /// </summary>
 19    [Newtonsoft.Json.JsonObject("browserTiming")]
 20    public partial class EventsBrowserTimingResult : EventsResultData
 21    {
 22        /// <summary>
 23        /// Initializes a new instance of the EventsBrowserTimingResult class.
 24        /// </summary>
 1025        public EventsBrowserTimingResult()
 26        {
 27            CustomInit();
 1028        }
 29
 30        /// <summary>
 31        /// Initializes a new instance of the EventsBrowserTimingResult class.
 32        /// </summary>
 33        /// <param name="id">The unique ID for this event.</param>
 34        /// <param name="count">Count of the event</param>
 35        /// <param name="timestamp">Timestamp of the event</param>
 36        /// <param name="customDimensions">Custom dimensions of the
 37        /// event</param>
 38        /// <param name="customMeasurements">Custom measurements of the
 39        /// event</param>
 40        /// <param name="operation">Operation info of the event</param>
 41        /// <param name="session">Session info of the event</param>
 42        /// <param name="user">User info of the event</param>
 43        /// <param name="cloud">Cloud info of the event</param>
 44        /// <param name="ai">AI info of the event</param>
 45        /// <param name="application">Application info of the event</param>
 46        /// <param name="client">Client info of the event</param>
 47        public EventsBrowserTimingResult(string id = default(string), long? count = default(long?), System.DateTime? tim
 048            : base(id, count, timestamp, customDimensions, customMeasurements, operation, session, user, cloud, ai, appl
 49        {
 050            BrowserTiming = browserTiming;
 051            ClientPerformance = clientPerformance;
 52            CustomInit();
 053        }
 54
 55        /// <summary>
 56        /// An initialization method that performs custom operations like setting defaults
 57        /// </summary>
 58        partial void CustomInit();
 59
 60        /// <summary>
 61        /// </summary>
 62        [JsonProperty(PropertyName = "browserTiming")]
 8663        public EventsBrowserTimingInfo BrowserTiming { get; set; }
 64
 65        /// <summary>
 66        /// </summary>
 67        [JsonProperty(PropertyName = "clientPerformance")]
 068        public EventsClientPerformanceInfo ClientPerformance { get; set; }
 69
 70    }
 71}