Show / Hide Table of Contents

Class TcpConnection

TCP connection results. All durations are in milliseconds.

Inheritance
object
TcpConnection
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.HealthchecksService.Models
Assembly: OCI.DotNetSDK.Healthchecks.dll
Syntax
public class TcpConnection

Properties

Address

Declaration
[JsonProperty(PropertyName = "address")]
public string Address { get; set; }
Property Value
Type Description
string

The connection IP address.

ConnectDuration

Declaration
[JsonProperty(PropertyName = "connectDuration")]
public double ConnectDuration { get; set; }
Property Value
Type Description
double

Total connect duration, calculated using connectEnd minus connectStart.

Port

Declaration
[JsonProperty(PropertyName = "port")]
public int? Port { get; set; }
Property Value
Type Description
int?

The port.

SecureConnectDuration

Declaration
[JsonProperty(PropertyName = "secureConnectDuration")]
public double SecureConnectDuration { get; set; }
Property Value
Type Description
double

The duration to secure the connection. This value will be zero for insecure connections. Calculated using connectEnd minus secureConnectionStart.

In this article
Back to top