property ConnectionGroupName: string;
Description
Gets or sets the name of the connection group associated with the request.
The ConnectionGroupName property allows you to associate a request with a connection group. This is useful when your application sends requests to the same server on behalf of different users—for example, a web application retrieving 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 won't break. The next time you send an HTTP request to the same server, a new TCP connection won't be created—an existing connection from the pool will be taken.
The value can be used to initialize the corresponding property of new TScRestRequest objects.