multipathServiceType property

URLSessionMultipathServiceType multipathServiceType

What type of Multipath TCP connections to use.

See NSURLSessionConfiguration.multipathServiceType

Implementation

URLSessionMultipathServiceType get multipathServiceType =>
    URLSessionMultipathServiceType.values[_nsObject.multipathServiceType];
void multipathServiceType=(URLSessionMultipathServiceType value)

Implementation

set multipathServiceType(URLSessionMultipathServiceType value) =>
    _nsObject.multipathServiceType = value.index;