Sdílet prostřednictvím


ConnectionStateSnapshot Constructors

Definition

Overloads

ConnectionStateSnapshot()

Initializes a new instance of the ConnectionStateSnapshot class.

ConnectionStateSnapshot(String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<ConnectivityHop>)

Initializes a new instance of the ConnectionStateSnapshot class.

ConnectionStateSnapshot()

Initializes a new instance of the ConnectionStateSnapshot class.

public ConnectionStateSnapshot ();
Public Sub New ()

Applies to

ConnectionStateSnapshot(String, Nullable<DateTime>, Nullable<DateTime>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, IList<ConnectivityHop>)

Initializes a new instance of the ConnectionStateSnapshot class.

public ConnectionStateSnapshot (string connectionState = default, DateTime? startTime = default, DateTime? endTime = default, string evaluationState = default, long? avgLatencyInMs = default, long? minLatencyInMs = default, long? maxLatencyInMs = default, long? probesSent = default, long? probesFailed = default, System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ConnectivityHop> hops = default);
new Microsoft.Azure.Management.Network.Models.ConnectionStateSnapshot : string * Nullable<DateTime> * Nullable<DateTime> * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ConnectivityHop> -> Microsoft.Azure.Management.Network.Models.ConnectionStateSnapshot
Public Sub New (Optional connectionState As String = Nothing, Optional startTime As Nullable(Of DateTime) = Nothing, Optional endTime As Nullable(Of DateTime) = Nothing, Optional evaluationState As String = Nothing, Optional avgLatencyInMs As Nullable(Of Long) = Nothing, Optional minLatencyInMs As Nullable(Of Long) = Nothing, Optional maxLatencyInMs As Nullable(Of Long) = Nothing, Optional probesSent As Nullable(Of Long) = Nothing, Optional probesFailed As Nullable(Of Long) = Nothing, Optional hops As IList(Of ConnectivityHop) = Nothing)

Parameters

connectionState
String

The connection state. Possible values include: 'Reachable', 'Unreachable', 'Unknown'

startTime
Nullable<DateTime>

The start time of the connection snapshot.

endTime
Nullable<DateTime>

The end time of the connection snapshot.

evaluationState
String

Connectivity analysis evaluation state. Possible values include: 'NotStarted', 'InProgress', 'Completed'

avgLatencyInMs
Nullable<Int64>

Average latency in ms.

minLatencyInMs
Nullable<Int64>

Minimum latency in ms.

maxLatencyInMs
Nullable<Int64>

Maximum latency in ms.

probesSent
Nullable<Int64>

The number of sent probes.

probesFailed
Nullable<Int64>

The number of failed probes.

hops
IList<ConnectivityHop>

List of hops between the source and the destination.

Applies to