TcpTransportElement.ListenBacklog Propriété
Définition
Important
Certaines informations portent sur la préversion du produit qui est susceptible d’être en grande partie modifiée avant sa publication. Microsoft exclut toute garantie, expresse ou implicite, concernant les informations fournies ici.
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é
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.