Aracılığıyla paylaş


EventsBrowserTimingInfo Constructors

Definition

Overloads

EventsBrowserTimingInfo()

Initializes a new instance of the EventsBrowserTimingInfo class.

EventsBrowserTimingInfo(String, String, String, String, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the EventsBrowserTimingInfo class.

EventsBrowserTimingInfo()

Initializes a new instance of the EventsBrowserTimingInfo class.

public EventsBrowserTimingInfo ();
Public Sub New ()

Applies to

EventsBrowserTimingInfo(String, String, String, String, Nullable<Int64>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

Initializes a new instance of the EventsBrowserTimingInfo class.

public EventsBrowserTimingInfo (string urlPath = default, string urlHost = default, string name = default, string url = default, long? totalDuration = default, string performanceBucket = default, long? networkDuration = default, long? sendDuration = default, long? receiveDuration = default, long? processingDuration = default);
new Microsoft.Azure.ApplicationInsights.Models.EventsBrowserTimingInfo : string * string * string * string * Nullable<int64> * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.ApplicationInsights.Models.EventsBrowserTimingInfo
Public Sub New (Optional urlPath As String = Nothing, Optional urlHost As String = Nothing, Optional name As String = Nothing, Optional url As String = Nothing, Optional totalDuration As Nullable(Of Long) = Nothing, Optional performanceBucket As String = Nothing, Optional networkDuration As Nullable(Of Long) = Nothing, Optional sendDuration As Nullable(Of Long) = Nothing, Optional receiveDuration As Nullable(Of Long) = Nothing, Optional processingDuration As Nullable(Of Long) = Nothing)

Parameters

urlPath
String

The path of the URL

urlHost
String

The host of the URL

name
String

The name of the page

url
String

The url of the page

totalDuration
Nullable<Int64>

The total duration of the load

performanceBucket
String

The performance bucket of the load

networkDuration
Nullable<Int64>

The network duration of the load

sendDuration
Nullable<Int64>

The send duration of the load

receiveDuration
Nullable<Int64>

The receive duration of the load

processingDuration
Nullable<Int64>

The processing duration of the load

Applies to