Share via


TroubleshootingResult Constructors

Definition

Overloads

TroubleshootingResult()

Initializes a new instance of the TroubleshootingResult class.

TroubleshootingResult(Nullable<DateTime>, Nullable<DateTime>, String, IList<TroubleshootingDetails>)

Initializes a new instance of the TroubleshootingResult class.

TroubleshootingResult()

Initializes a new instance of the TroubleshootingResult class.

public TroubleshootingResult ();
Public Sub New ()

Applies to

TroubleshootingResult(Nullable<DateTime>, Nullable<DateTime>, String, IList<TroubleshootingDetails>)

Initializes a new instance of the TroubleshootingResult class.

public TroubleshootingResult (DateTime? startTime = default, DateTime? endTime = default, string code = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.TroubleshootingDetails> results = default);
new Microsoft.Azure.Management.Network.Models.TroubleshootingResult : Nullable<DateTime> * Nullable<DateTime> * string * System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.TroubleshootingDetails> -> Microsoft.Azure.Management.Network.Models.TroubleshootingResult
Public Sub New (Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional code As String = Nothing, Optional results As IList(Of TroubleshootingDetails) = Nothing)

Parameters

startTime
Nullable<DateTime>

The start time of the troubleshooting.

endTime
Nullable<DateTime>

The end time of the troubleshooting.

code
String

The result code of the troubleshooting.

results
IList<TroubleshootingDetails>

Information from troubleshooting.

Applies to