Show / Hide Table of Contents

Class TcpOptions

Optional and valid only for TCP. Use to specify particular destination ports for TCP rules. If you specify TCP as the protocol but omit this object, then all destination ports are allowed.

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

Properties

DestinationPortRange

Declaration
[JsonProperty(PropertyName = "destinationPortRange")]
public PortRange DestinationPortRange { get; set; }
Property Value
Type Description
PortRange

SourcePortRange

Declaration
[JsonProperty(PropertyName = "sourcePortRange")]
public PortRange SourcePortRange { get; set; }
Property Value
Type Description
PortRange
In this article
Back to top