PeerTransportElement.Port 属性

定义

获取或设置配置元素,该配置元素为对等传输绑定指定端口。

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

属性值

Int32

一个 Int32 值,该值为对等传输绑定指定端口。

属性

注解

如果端口值无效,则会引发 ArgumentException。 此属性的默认值是 0,指示侦听器端口是从所有未保留的端口中随机选择的。

适用于