Online Documentation - Statistics - FAQ - Plugin Parts (All, Dependencies) - Class hierarchy
New in Version 22.2 22.3 22.4 22.5 23.0 23.1 23.2 23.3 23.4 23.5 24.0 24.1
The list of the topics, classes, interfaces, controls, modules, global methods by category, global methods by name, screenshots, licenses and examples.
Platforms to show: All Mac Windows Linux Cross-Platform
Type | Topic | Plugin | Version | macOS | Windows | Linux | iOS | Targets |
class | Cocoa Networking | MBS MacBase Plugin | 7.2 | ✅ Yes | ❌ No | ❌ No | ✅ Yes | All |
NSURLRequest encapsulates two basic data elements about a URL load request:
The URL to load.
The policy to use when consulting the URL content cache made available by the implementation.
Constant | Value | Description |
---|---|---|
NSURLRequestReloadIgnoringCacheData | 1 | A constant that can be used to specify the type of interactions that take place with the caching system when the URL loading system processes a request. Specifically, these constants cover interactions that have to do with whether already-existing cache data is returned to satisfy a URL load request. more |
NSURLRequestReloadIgnoringLocalAndRemoteCacheData | 4 | A constant that can be used to specify the type of interactions that take place with the caching system when the URL loading system processes a request. Specifies that not only should the local cache data be ignored, but that proxies and other intermediates should be instructed to disregard their caches so far as the protocol allows. more |
NSURLRequestReloadRevalidatingCacheData | 5 |
A constant that can be used to specify the type of interactions that take place with the caching system when the URL loading system processes a request.
Specifies that the existing cache data may be used provided the origin source confirms its validity, otherwise the URL is loaded from the origin source. Available in Mac OS X v10.5 and later. |
NSURLRequestReturnCacheDataDontLoad | 3 | A constant that can be used to specify the type of interactions that take place with the caching system when the URL loading system processes a request. Specifically, these constants cover interactions that have to do with whether already-existing cache data is returned to satisfy a URL load request. more |
NSURLRequestReturnCacheDataElseLoad | 2 | A constant that can be used to specify the type of interactions that take place with the caching system when the URL loading system processes a request. Specifically, these constants cover interactions that have to do with whether already-existing cache data is returned to satisfy a URL load request. more |
NSURLRequestUseProtocolCachePolicy | 0 | A constant that can be used to specify the type of interactions that take place with the caching system when the URL loading system processes a request. Specifically, these constants cover interactions that have to do with whether already-existing cache data is returned to satisfy a URL load request. more |
Constant | Value | Description |
---|---|---|
NSURLNetworkServiceTypeBackground | 3 |
Specifies that the request is for background traffic (such as a file download). The service type is used to provide the networking layers a hint of the purpose of the request. |
NSURLNetworkServiceTypeDefault | 0 | Is the default value for an NSURLRequest when created. This value should be left unchanged for the vast majority of requests. more |
NSURLNetworkServiceTypeVideo | 2 |
Specifies that the request is for video traffic. The service type is used to provide the networking layers a hint of the purpose of the request. |
NSURLNetworkServiceTypeVoice | 4 |
Specifies that the request is for voice data. The service type is used to provide the networking layers a hint of the purpose of the request. |
NSURLNetworkServiceTypeVoIP | 1 |
Specifies that the request is for voice over IP control traffic. The service type is used to provide the networking layers a hint of the purpose of the request. |
Constant | Value | Description |
---|---|---|
NSURLRequestAttributionDeveloper | 0 |
Indicates that the URL was specified by the developer. This is the default value for an NSURLRequest when created. |
NSURLRequestAttributionUser | 1 |
Indicates that the URL was specified by the user. |
The items on this page are in the following plugins: MBS MacBase Plugin.
NSURLRequestCertificateFilterMBS - NSURLResponseMBS