networkServiceType property

URLRequestNetworkService networkServiceType

Provides in indication to the operating system on what type of requests are being sent.

See NSURLSessionConfiguration.networkServiceType.

Implementation

URLRequestNetworkService get networkServiceType =>
    URLRequestNetworkService.values[_nsObject.networkServiceType];
void networkServiceType=(URLRequestNetworkService value)

Implementation

set networkServiceType(URLRequestNetworkService value) =>
    _nsObject.networkServiceType = value.index;