RallyRestApiSetDefaultConnectionLimit Method |
Sets the default maximum concurrent connection limit for this application.
Note |
---|
This will affect all connections that use Service Point. |
Namespace: Rally.RestApiAssembly: Rally.RestApi (in Rally.RestApi.dll) Version: 3.1.1.0 (3.1.1.0)
Syntax public static void SetDefaultConnectionLimit(
ushort maxConnections
)
Public Shared Sub SetDefaultConnectionLimit (
maxConnections As UShort
)
public:
static void SetDefaultConnectionLimit(
unsigned short maxConnections
)
static member SetDefaultConnectionLimit :
maxConnections : uint16 -> unit
Parameters
- maxConnections
- Type: SystemUInt16
The maximum number of concurrent connections. Allowed values are between 1 and 25.
Examples RallyRestApi.SetDefaultConnectionLimit(10);
See Also