Share via


TcpTransportBindingElement.ConnectionPoolSettings プロパティ

定義

接続プール設定のコレクションを取得します。

public:
 property System::ServiceModel::Channels::TcpConnectionPoolSettings ^ ConnectionPoolSettings { System::ServiceModel::Channels::TcpConnectionPoolSettings ^ get(); };
public System.ServiceModel.Channels.TcpConnectionPoolSettings ConnectionPoolSettings { get; }
member this.ConnectionPoolSettings : System.ServiceModel.Channels.TcpConnectionPoolSettings
Public ReadOnly Property ConnectionPoolSettings As TcpConnectionPoolSettings

プロパティ値

接続プールに関連するさまざまなプロパティを格納する TcpConnectionPoolSettings オブジェクト。

次の例では、接続プール設定のコレクションを取得する方法を示します。

TcpTransportBindingElement bElement =
    new TcpTransportBindingElement();

TcpConnectionPoolSettings connectionPoolSettings =
    bElement.ConnectionPoolSettings;

適用対象