共用方式為


EventsRequestInfo Constructors

Definition

Overloads

EventsRequestInfo()

Initializes a new instance of the EventsRequestInfo class.

EventsRequestInfo(String, String, String, Nullable<Double>, String, String, String, String)

Initializes a new instance of the EventsRequestInfo class.

EventsRequestInfo()

Source:
EventsRequestInfo.cs

Initializes a new instance of the EventsRequestInfo class.

public EventsRequestInfo ();
Public Sub New ()

Applies to

EventsRequestInfo(String, String, String, Nullable<Double>, String, String, String, String)

Source:
EventsRequestInfo.cs

Initializes a new instance of the EventsRequestInfo class.

public EventsRequestInfo (string name = default, string url = default, string success = default, double? duration = default, string performanceBucket = default, string resultCode = default, string source = default, string id = default);
new Microsoft.Azure.ApplicationInsights.Query.Models.EventsRequestInfo : string * string * string * Nullable<double> * string * string * string * string -> Microsoft.Azure.ApplicationInsights.Query.Models.EventsRequestInfo
Public Sub New (Optional name As String = Nothing, Optional url As String = Nothing, Optional success As String = Nothing, Optional duration As Nullable(Of Double) = Nothing, Optional performanceBucket As String = Nothing, Optional resultCode As String = Nothing, Optional source As String = Nothing, Optional id As String = Nothing)

Parameters

name
String

The name of the request

url
String

The URL of the request

success
String

Indicates if the request was successful

duration
Nullable<Double>

The duration of the request

performanceBucket
String

The performance bucket of the request

resultCode
String

The result code of the request

source
String

The source of the request

id
String

The ID of the request

Applies to