HttpBaseProtocolFilter.MaxConnectionsPerServer Property
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Get or set the maximum number of TCP connections allowed per HTTP server by the HttpBaseProtocolFilter object.
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
Property Value
The maximum number of connections allowed per HTTP server.
Remarks
The MaxConnectionsPerServer property determines the maximum number of TCP connections to an HTTP server allowed on the HttpBaseProtocolFilter object. The best value for your application to set this property to depends on your usage pattern, and on the server, and it also depends on whether you're optimizing for performance for a single query or performance for all queries.
The default value for this property is currently 6. But the default value is a function of the version of the HttpBaseProtocolFilter, and it is not guaranteed to be unchanged from one release to another.