HttpBaseProtocolFilter.MaxConnectionsPerServer 属性

定义

获取或设置 HttpBaseProtocolFilter 对象允许的每个 HTTP 服务器的最大 TCP 连接数。

public:
 property unsigned int MaxConnectionsPerServer { unsigned int get(); void set(unsigned int value); };
uint32_t MaxConnectionsPerServer();

void MaxConnectionsPerServer(uint32_t value);
public uint MaxConnectionsPerServer { get; set; }
var uInt32 = httpBaseProtocolFilter.maxConnectionsPerServer;
httpBaseProtocolFilter.maxConnectionsPerServer = uInt32;
Public Property MaxConnectionsPerServer As UInteger

属性值

UInt32

unsigned int

uint32_t

每个 HTTP 服务器允许的最大连接数。

注解

MaxConnectionsPerServer 属性确定 HttpBaseProtocolFilter 对象上允许的与 HTTP 服务器的最大 TCP 连接数。 应用程序将此属性设置为 的最佳值取决于使用模式和服务器,还取决于是针对单个查询的性能优化还是针对所有查询的性能进行优化。

此属性的默认值当前为 6。 但默认值是 HttpBaseProtocolFilter 版本的函数,不保证从一个版本到另一个版本保持不变。

适用于