Show / Hide Table of Contents

Class UdpProtocolParameters

Defines the configuration for UDP protocol parameters.

Inheritance
object
ProtocolParameters
UdpProtocolParameters
Inherited Members
object.Equals(object)
object.Equals(object, object)
object.GetHashCode()
object.GetType()
object.MemberwiseClone()
object.ReferenceEquals(object, object)
object.ToString()
Namespace: Oci.VnmonitoringService.Models
Assembly: OCI.DotNetSDK.Vnmonitoring.dll
Syntax
public class UdpProtocolParameters : ProtocolParameters

Properties

DestinationPort

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

The destination port to use in a PathAnalyzerTest resource.

Remarks

Required

SourcePort

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

The source port to use in a PathAnalyzerTest resource.

In this article
Back to top