PeerTransportElement.Port Property

Definition

Gets or sets a configuration element that specifies the port for the peer transport binding.

public:
 property int Port { int get(); void set(int value); };
[System.Configuration.ConfigurationProperty("port", DefaultValue=0)]
[System.Configuration.IntegerValidator(MaxValue=65535, MinValue=0)]
public int Port { get; set; }
[<System.Configuration.ConfigurationProperty("port", DefaultValue=0)>]
[<System.Configuration.IntegerValidator(MaxValue=65535, MinValue=0)>]
member this.Port : int with get, set
Public Property Port As Integer

Property Value

A Int32 value that specifies the port for the peer transport binding.

Attributes

Remarks

If the port value is invalid, ArgumentException is raised. The default value for this property is 0, which indicates that the listener port is randomly selected from all unreserved ports.

Applies to