You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
// The maximun number of connections that a URLSession can have open to the
218
+
// same host.
219
+
//
220
+
// See [NSURLSessionConfiguration.HTTPMaximumConnectionsPerHost](https://developer.apple.com/documentation/foundation/nsurlsessionconfiguration/1407597-httpmaximumconnectionsperhost).
221
+
intget httpMaximumConnectionsPerHost =>
222
+
_nsObject.HTTPMaximumConnectionsPerHost;
223
+
sethttpMaximumConnectionsPerHost(int value) =>
224
+
_nsObject.HTTPMaximumConnectionsPerHost= value;
225
+
217
226
/// Whether requests should include cookies from the cookie store.
218
227
///
219
228
/// See [NSURLSessionConfiguration.HTTPShouldSetCookies](https://developer.apple.com/documentation/foundation/nsurlsessionconfiguration/1411589-httpshouldsetcookies)
0 commit comments