共用方式為


TcpTransportElement.ListenBacklog 屬性

定義

取得或設定可以在接聽程式上等待被接受的通道數目上限。

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

屬性值

可以在接聽程式上等待被接受的通道數目上限。 預設值為 10。

屬性

備註

超過這個限制的連線都會進入佇列,直到低於此限制的空間可用為止。 LeaseTimeout 屬性會限制用戶端在擲回連線例外狀況之前,等待要連線的持續期間。

適用於