次の方法で共有


TcpConnectionPoolSettingsElement.MaxOutboundConnectionsPerEndpoint プロパティ

定義

サービスによって開始されるリモート エンドポイントへの接続の最大数を取得または設定します。

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

プロパティ値

サービスによって開始されるリモート エンドポイントへの接続の最大数。 既定値は 10 です。

属性

注釈

制限を超えた接続は、制限内に空きができるまでキューに置かれます。 このプロパティは、例外がスローされるまでに接続をキューに入れたままにする期間を制限します。

このプロパティは、クライアントから特定のサービス エンドポイントへの接続で、同時にアクティブできる接続数を制限します。 この値よりも多くのアクティブなクライアント接続がある場合、サービスは、クライアントに応答しないように見える可能性があります。 この場合は、この値を調整して、予想される特定のエンドポイントへの同時クライアント接続の最大数より大きくする必要があります。

適用対象