< Summary

Class:Microsoft.Azure.ApplicationInsights.Query.Models.EventsBrowserTimingInfo
Assembly:Microsoft.Azure.ApplicationInsights.Query
File(s):C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\EventsBrowserTimingInfo.cs
Covered lines:10
Uncovered lines:14
Coverable lines:24
Total lines:127
Line coverage:41.6% (10 of 24)
Covered branches:0
Total branches:0

Metrics

MethodCyclomatic complexity Line coverage Branch coverage
.ctor()-100%100%
.ctor(...)-0%100%
get_UrlPath()-0%100%
get_UrlHost()-0%100%
get_Name()-100%100%
get_Url()-100%100%
get_TotalDuration()-100%100%
get_PerformanceBucket()-100%100%
get_NetworkDuration()-100%100%
get_SendDuration()-100%100%
get_ReceiveDuration()-100%100%
get_ProcessingDuration()-100%100%

File(s)

C:\Git\azure-sdk-for-net\sdk\applicationinsights\Microsoft.Azure.ApplicationInsights.Query\src\Generated\Models\EventsBrowserTimingInfo.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    /// The browser timing information
 18    /// </summary>
 19    public partial class EventsBrowserTimingInfo
 20    {
 21        /// <summary>
 22        /// Initializes a new instance of the EventsBrowserTimingInfo class.
 23        /// </summary>
 1024        public EventsBrowserTimingInfo()
 25        {
 26            CustomInit();
 1027        }
 28
 29        /// <summary>
 30        /// Initializes a new instance of the EventsBrowserTimingInfo class.
 31        /// </summary>
 32        /// <param name="urlPath">The path of the URL</param>
 33        /// <param name="urlHost">The host of the URL</param>
 34        /// <param name="name">The name of the page</param>
 35        /// <param name="url">The url of the page</param>
 36        /// <param name="totalDuration">The total duration of the load</param>
 37        /// <param name="performanceBucket">The performance bucket of the
 38        /// load</param>
 39        /// <param name="networkDuration">The network duration of the
 40        /// load</param>
 41        /// <param name="sendDuration">The send duration of the load</param>
 42        /// <param name="receiveDuration">The receive duration of the
 43        /// load</param>
 44        /// <param name="processingDuration">The processing duration of the
 45        /// load</param>
 046        public EventsBrowserTimingInfo(string urlPath = default(string), string urlHost = default(string), string name =
 47        {
 048            UrlPath = urlPath;
 049            UrlHost = urlHost;
 050            Name = name;
 051            Url = url;
 052            TotalDuration = totalDuration;
 053            PerformanceBucket = performanceBucket;
 054            NetworkDuration = networkDuration;
 055            SendDuration = sendDuration;
 056            ReceiveDuration = receiveDuration;
 057            ProcessingDuration = processingDuration;
 58            CustomInit();
 059        }
 60
 61        /// <summary>
 62        /// An initialization method that performs custom operations like setting defaults
 63        /// </summary>
 64        partial void CustomInit();
 65
 66        /// <summary>
 67        /// Gets or sets the path of the URL
 68        /// </summary>
 69        [JsonProperty(PropertyName = "urlPath")]
 070        public string UrlPath { get; set; }
 71
 72        /// <summary>
 73        /// Gets or sets the host of the URL
 74        /// </summary>
 75        [JsonProperty(PropertyName = "urlHost")]
 076        public string UrlHost { get; set; }
 77
 78        /// <summary>
 79        /// Gets or sets the name of the page
 80        /// </summary>
 81        [JsonProperty(PropertyName = "name")]
 2282        public string Name { get; set; }
 83
 84        /// <summary>
 85        /// Gets or sets the url of the page
 86        /// </summary>
 87        [JsonProperty(PropertyName = "url")]
 2288        public string Url { get; set; }
 89
 90        /// <summary>
 91        /// Gets or sets the total duration of the load
 92        /// </summary>
 93        [JsonProperty(PropertyName = "totalDuration")]
 2294        public long? TotalDuration { get; set; }
 95
 96        /// <summary>
 97        /// Gets or sets the performance bucket of the load
 98        /// </summary>
 99        [JsonProperty(PropertyName = "performanceBucket")]
 22100        public string PerformanceBucket { get; set; }
 101
 102        /// <summary>
 103        /// Gets or sets the network duration of the load
 104        /// </summary>
 105        [JsonProperty(PropertyName = "networkDuration")]
 22106        public long? NetworkDuration { get; set; }
 107
 108        /// <summary>
 109        /// Gets or sets the send duration of the load
 110        /// </summary>
 111        [JsonProperty(PropertyName = "sendDuration")]
 22112        public long? SendDuration { get; set; }
 113
 114        /// <summary>
 115        /// Gets or sets the receive duration of the load
 116        /// </summary>
 117        [JsonProperty(PropertyName = "receiveDuration")]
 22118        public long? ReceiveDuration { get; set; }
 119
 120        /// <summary>
 121        /// Gets or sets the processing duration of the load
 122        /// </summary>
 123        [JsonProperty(PropertyName = "processingDuration")]
 22124        public long? ProcessingDuration { get; set; }
 125
 126    }
 127}