Share via


EventsDependencyInfo Constructors

Definition

Overloads

EventsDependencyInfo()

Initializes a new instance of the EventsDependencyInfo class.

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

Initializes a new instance of the EventsDependencyInfo class.

EventsDependencyInfo()

Initializes a new instance of the EventsDependencyInfo class.

public EventsDependencyInfo ();
Public Sub New ()

Applies to

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

Initializes a new instance of the EventsDependencyInfo class.

public EventsDependencyInfo (string target = default, string data = default, string success = default, long? duration = default, string performanceBucket = default, string resultCode = default, string type = default, string name = default, string id = default);
new Microsoft.Azure.ApplicationInsights.Models.EventsDependencyInfo : string * string * string * Nullable<int64> * string * string * string * string * string -> Microsoft.Azure.ApplicationInsights.Models.EventsDependencyInfo
Public Sub New (Optional target As String = Nothing, Optional data As String = Nothing, Optional success As String = Nothing, Optional duration As Nullable(Of Long) = Nothing, Optional performanceBucket As String = Nothing, Optional resultCode As String = Nothing, Optional type As String = Nothing, Optional name As String = Nothing, Optional id As String = Nothing)

Parameters

target
String

The target of the dependency

data
String

The data of the dependency

success
String

Indicates if the dependency was successful

duration
Nullable<Int64>

The duration of the dependency

performanceBucket
String

The performance bucket of the dependency

resultCode
String

The result code of the dependency

type
String

The type of the dependency

name
String

The name of the dependency

id
String

The ID of the dependency

Applies to