Compartilhar via


TcpTransportElement.ListenBacklog Propriedade

Definição

Obtém ou define o número máximo de canais que podem aguardar até o ouvinte ser aceito.

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

Valor da propriedade

Int32

O número máximo de canais que podem aguardar a aceitação do ouvinte. O padrão é 10.

Atributos

Comentários

As conexões que excedem o limite são enfileiradas até que um espaço abaixo do limite fique disponível. A LeaseTimeout Propriedade limita a duração que o cliente aguarda para ser conectado antes de lançar uma exceção de conexão.

Aplica-se a