ConnectivityInformation 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
ConnectivityInformation() |
Initializes a new instance of the ConnectivityInformation class. |
ConnectivityInformation(IList<ConnectivityHop>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>) |
Initializes a new instance of the ConnectivityInformation class. |
ConnectivityInformation()
Initializes a new instance of the ConnectivityInformation class.
public ConnectivityInformation ();
Public Sub New ()
Applies to
ConnectivityInformation(IList<ConnectivityHop>, String, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>, Nullable<Int32>)
Initializes a new instance of the ConnectivityInformation class.
public ConnectivityInformation (System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ConnectivityHop> hops = default, string connectionStatus = default, int? avgLatencyInMs = default, int? minLatencyInMs = default, int? maxLatencyInMs = default, int? probesSent = default, int? probesFailed = default);
new Microsoft.Azure.Management.Network.Models.ConnectivityInformation : System.Collections.Generic.IList<Microsoft.Azure.Management.Network.Models.ConnectivityHop> * string * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> * Nullable<int> -> Microsoft.Azure.Management.Network.Models.ConnectivityInformation
Public Sub New (Optional hops As IList(Of ConnectivityHop) = Nothing, Optional connectionStatus As String = Nothing, Optional avgLatencyInMs As Nullable(Of Integer) = Nothing, Optional minLatencyInMs As Nullable(Of Integer) = Nothing, Optional maxLatencyInMs As Nullable(Of Integer) = Nothing, Optional probesSent As Nullable(Of Integer) = Nothing, Optional probesFailed As Nullable(Of Integer) = Nothing)
Parameters
- hops
- IList<ConnectivityHop>
List of hops between the source and the destination.
- connectionStatus
- String
The connection status. Possible values include: 'Unknown', 'Connected', 'Disconnected', 'Degraded'
Applies to
Azure SDK for .NET