ConnectionStateSnapshot Constructors
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
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'
- evaluationState
- String
Connectivity analysis evaluation state. Possible values include: 'NotStarted', 'InProgress', 'Completed'
- hops
- IList<ConnectivityHop>
List of hops between the source and the destination.
Applies to
Azure SDK for .NET