EndpointDetail Constructors

Definition

Overloads

EndpointDetail()

Initializes a new instance of the EndpointDetail class.

EndpointDetail(String, Nullable<Int32>, Nullable<Double>, Nullable<Boolean>)

Initializes a new instance of the EndpointDetail class.

EndpointDetail()

Initializes a new instance of the EndpointDetail class.

public EndpointDetail ();
Public Sub New ()

Applies to

EndpointDetail(String, Nullable<Int32>, Nullable<Double>, Nullable<Boolean>)

Initializes a new instance of the EndpointDetail class.

public EndpointDetail (string ipAddress = default, int? port = default, double? latency = default, bool? isAccessible = default);
new Microsoft.Azure.Management.AppService.Fluent.Models.EndpointDetail : string * Nullable<int> * Nullable<double> * Nullable<bool> -> Microsoft.Azure.Management.AppService.Fluent.Models.EndpointDetail
Public Sub New (Optional ipAddress As String = Nothing, Optional port As Nullable(Of Integer) = Nothing, Optional latency As Nullable(Of Double) = Nothing, Optional isAccessible As Nullable(Of Boolean) = Nothing)

Parameters

ipAddress
String

An IP Address that Domain Name currently resolves to.

port
Nullable<Int32>

The port an endpoint is connected to.

latency
Nullable<Double>

The time in milliseconds it takes for a TCP connection to be created from the App Service Environment to this IpAddress at this Port.

isAccessible
Nullable<Boolean>

Whether it is possible to create a TCP connection from the App Service Environment to this IpAddress at this Port.

Applies to