httpMaximumConnectionsPerHost property

int httpMaximumConnectionsPerHost

The maximum number of connections that a URLSession can have open to the same host. See NSURLSessionConfiguration.HTTPMaximumConnectionsPerHost.

Implementation

//
/// See [NSURLSessionConfiguration.HTTPMaximumConnectionsPerHost](https://developer.apple.com/documentation/foundation/nsurlsessionconfiguration/1407597-httpmaximumconnectionsperhost).
int get httpMaximumConnectionsPerHost =>
    _nsObject.HTTPMaximumConnectionsPerHost;
void httpMaximumConnectionsPerHost=(int value)

Implementation

set httpMaximumConnectionsPerHost(int value) =>
    _nsObject.HTTPMaximumConnectionsPerHost = value;