TcpConnectionPoolSettingsElement.MaxOutboundConnectionsPerEndpoint プロパティ
定義
重要
一部の情報は、リリース前に大きく変更される可能性があるプレリリースされた製品に関するものです。 Microsoft は、ここに記載されている情報について、明示または黙示を問わず、一切保証しません。
サービスによって開始されるリモート エンドポイントへの接続の最大数を取得または設定します。
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 です。
- 属性
注釈
制限を超えた接続は、制限内に空きができるまでキューに置かれます。 このプロパティは、例外がスローされるまでに接続をキューに入れたままにする期間を制限します。
このプロパティは、クライアントから特定のサービス エンドポイントへの接続で、同時にアクティブできる接続数を制限します。 この値よりも多くのアクティブなクライアント接続がある場合、サービスは、クライアントに応答しないように見える可能性があります。 この場合は、この値を調整して、予想される特定のエンドポイントへの同時クライアント接続の最大数より大きくする必要があります。
適用対象
GitHub で Microsoft と共同作業する
このコンテンツのソースは GitHub にあります。そこで、issue や pull request を作成および確認することもできます。 詳細については、共同作成者ガイドを参照してください。
.NET