你当前正在访问 Microsoft Azure Global Edition 技术文档网站。 如果需要访问由世纪互联运营的 Microsoft Azure 中国技术文档网站,请访问 https://docs.azure.cn

ConnectivityCheckResponse 构造函数

定义

重载

ConnectivityCheckResponse()

初始化 ConnectivityCheckResponse 类的新实例。

ConnectivityCheckResponse(IList<ConnectivityHop>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

初始化 ConnectivityCheckResponse 类的新实例。

ConnectivityCheckResponse()

初始化 ConnectivityCheckResponse 类的新实例。

public ConnectivityCheckResponse ();
Public Sub New ()

适用于

ConnectivityCheckResponse(IList<ConnectivityHop>, String, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>, Nullable<Int64>)

初始化 ConnectivityCheckResponse 类的新实例。

public ConnectivityCheckResponse (System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ConnectivityHop> hops = default, string connectionStatus = default, long? avgLatencyInMs = default, long? minLatencyInMs = default, long? maxLatencyInMs = default, long? probesSent = default, long? probesFailed = default);
new Microsoft.Azure.Management.ApiManagement.Models.ConnectivityCheckResponse : System.Collections.Generic.IList<Microsoft.Azure.Management.ApiManagement.Models.ConnectivityHop> * string * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> * Nullable<int64> -> Microsoft.Azure.Management.ApiManagement.Models.ConnectivityCheckResponse
Public Sub New (Optional hops As IList(Of ConnectivityHop) = Nothing, Optional connectionStatus 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)

参数

hops
IList<ConnectivityHop>

源和目标之间的跃点列表。

connectionStatus
String

连接状态。 可能的值包括:“Unknown”、“Connected”、“Disconnected”、“已降级”

avgLatencyInMs
Nullable<Int64>

平均延迟(以毫秒为单位)。

minLatencyInMs
Nullable<Int64>

最小延迟(以毫秒为单位)。

maxLatencyInMs
Nullable<Int64>

最大延迟(以毫秒为单位)。

probesSent
Nullable<Int64>

发送的探测总数。

probesFailed
Nullable<Int64>

失败的探测数。

适用于