Show / Hide Table of Contents

Class ExternalListenerTcpEndpoint

A TCP-based protocol address.

Inheritance
object
ExternalListenerEndpoint
ExternalListenerTcpEndpoint
Inherited Members
ExternalListenerEndpoint.Services
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.DatabasemanagementService.Models
Assembly: OCI.DotNetSDK.Databasemanagement.dll
Syntax
public class ExternalListenerTcpEndpoint : ExternalListenerEndpoint

Properties

Host

Declaration
[Required(ErrorMessage = "Host is required.")]
[JsonProperty(PropertyName = "host")]
public string Host { get; set; }
Property Value
Type Description
string

The host name or IP address.

Remarks

Required

Port

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

The port number.

Remarks

Required

In this article
Back to top