EndpointDetail 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
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.
The time in milliseconds it takes for a TCP connection to be created from the App Service Environment to this IpAddress at this Port.
Whether it is possible to create a TCP connection from the App Service Environment to this IpAddress at this Port.
Applies to
Azure SDK for .NET