NetNamedPipeBinding.MaxConnections Propriedade

Definição

Obtém ou define o número máximo de conexões de entrada e saídas, que têm permissão para pontos de extremidade configurados com a associação de pipe nomeado.Gets or sets the maximum number of connections, both inbound and outbound, that are allowed to endpoints configured with the named pipe binding.

public:
 property int MaxConnections { int get(); void set(int value); };
public int MaxConnections { get; set; }
member this.MaxConnections : int with get, set
Public Property MaxConnections As Integer

Valor da propriedade

Int32

O número máximo de conexões de pipe nomeado que são permitidas com esta associação.The maximum number of named pipe connections that are allowed with this binding. O valor padrão é 10.The default value is 10.

Exemplos

O exemplo a seguir mostra como obter os MaxConnections valores.The following example shows how to get the MaxConnections values.

int maxConnections = binding.MaxConnections;

Comentários

O número máximo de entrada e o número máximo de conexões de saída são definidos com o mesmo valor.The maximum number of inbound and the maximum number of outbound connections are set to the same value.

Aplica-se a