Partager via


TcpTransportElement.ListenBacklog Propriété

Définition

Obtient ou définit le nombre maximal de canaux qui peuvent attendre d'être acceptés sur l'écouteur.

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

Valeur de propriété

Int32

Le nombre maximal de canaux qui peuvent attendre d'être acceptés sur l'écouteur. La valeur par défaut est de 10.

Attributs

Remarques

Toute connexion dépassant cette limite est mise en file d'attente jusqu'à ce qu'une place se libère. La propriété LeaseTimeout limite la durée pendant laquelle le client attend d'être connecté avant de lever une exception de connexion.

S’applique à