property ConnectionGroupName: string;
Description
Gets or sets the name of the connection group for the request.
The ConnectionGroupName property enables you to associate a request with a connection group. This is useful when your application makes requests to one server for different users, such as a Web site that retrieves customer information from a database server. In this case, you can add this connection to the pool by setting the ConnectionGroupName property. And then after receiving a response from the server, the connection will not break. The next time you create an HTTP request to the same server, a new TCP connection will not be created, but an existing connection from the pool will be taken.
See Also