diff --git a/Alamofire.podspec b/Alamofire.podspec index 3c4c5729d..818ff9f5c 100644 --- a/Alamofire.podspec +++ b/Alamofire.podspec @@ -1,6 +1,6 @@ Pod::Spec.new do |s| s.name = 'Alamofire' - s.version = '5.0.0-beta.5' + s.version = '5.0.0-beta.6' s.license = 'MIT' s.summary = 'Elegant HTTP Networking in Swift' s.homepage = 'https://github.com/Alamofire/Alamofire' @@ -17,6 +17,6 @@ Pod::Spec.new do |s| s.swift_version = '5.0' s.source_files = 'Source/*.swift' - + s.frameworks = 'CFNetwork' end diff --git a/CHANGELOG.md b/CHANGELOG.md index 705b5440d..d626b9800 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -3,7 +3,7 @@ All notable changes to this project will be documented in this file. `Alamofire` adheres to [Semantic Versioning](https://semver.org/). #### 5.x Releases -- `5.0.0` Betas - [5.0.0-beta.1](#500-beta1) | [5.0.0-beta.2](#500-beta2) | [5.0.0-beta.3](#500-beta3) | [5.0.0-beta.4](#500-beta4) | [5.0.0-beta.5](#500-beta5) +- `5.0.0` Betas - [5.0.0-beta.1](#500-beta1) | [5.0.0-beta.2](#500-beta2) | [5.0.0-beta.3](#500-beta3) | [5.0.0-beta.4](#500-beta4) | [5.0.0-beta.5](#500-beta5) | [5.0.0-beta.6](#500-beta6) #### 4.x Releases - `4.8.x` Releases - [4.8.0](#480) | [4.8.1](#481) @@ -38,6 +38,23 @@ All notable changes to this project will be documented in this file. --- +## [5.0.0-beta.6](https://github.com/Alamofire/Alamofire/releases/tag/5.0.0-beta.6) +Released on 2019-04-23. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/milestone/56?closed=1). **Note:** Alamofire will not be following semantic versioning during the beta process. There may be breaking changes until 5.0.0 is released. + +#### Updated +- `ServerTrustEvaluation` logic by simplifying public key equality checks for `SecKey` types. + - Updated by [Aleksandar Vacić](https://github.com/radianttap) in Pull Request [#2800](https://github.com/Alamofire/Alamofire/pull/2800). +- `Request.State` access to lock access and task updates using internal locking API. + - Updated by [Jon Shier](https://github.com/jshier) in Pull Request [#2814](https://github.com/Alamofire/Alamofire/pull/2814). + +#### Fixed +- Issues in `DownloadRequest` where some events were being duplicated and some were missing. + - Fixed by [Jon Shier](https://github.com/jshier) in Pull Request [#2807](https://github.com/Alamofire/Alamofire/pull/2807). +- Issue with AppStore submissions where the pre-release version in the bundle short versions string was being rejected when built with Carthage or as a submodule. + - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request [#2808](https://github.com/Alamofire/Alamofire/pull/2808). +- Issue where response serializer completions were not called when appended to a completed `Request`. + - Fixed by [Christian Noon](https://github.com/cnoon) in Pull Request [#2810](https://github.com/Alamofire/Alamofire/pull/2810). + ## [5.0.0-beta.5](https://github.com/Alamofire/Alamofire/releases/tag/5.0.0-beta.5) Released on 2019-04-12. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/milestone/55). **Note:** Alamofire will not be following semantic versioning during the beta process. There may be breaking changes until 5.0.0 is released. @@ -116,7 +133,7 @@ Released on 2019-01-07. All issues associated with this milestone can be found u - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#2713](https://github.com/Alamofire/Alamofire/pull/2713). - Alamofire's `didResume` notification to `didFinish`, which is now called when a `Request` finished, not when tasks resume. - Updated by [Jon Shier](https://github.com/jshier) in Pull Request [#2728](https://github.com/Alamofire/Alamofire/pull/2728). - + #### Fixed - `Request`s not finishing when their controlling `Session` is `deinit`d or invalidated. - Fixed by [Jon Shier](https://github.com/jshier) in Pull Request [#2728](https://github.com/Alamofire/Alamofire/pull/2728). @@ -167,10 +184,10 @@ Released on 2018-12-06. All issues associated with this milestone can be found u - `EventMonitor` protocol, to tap in to internal Alamofire lifetime events. - Added by [Jon Shier](https://github.com/jshier) in Pull Request [#2521](https://github.com/Alamofire/Alamofire/pull/2521). - `ServerTrustFailureReason` to `AFError`. - - Added by [Jon Shier](https://github.com/jshier) in Pull Request [#2608](https://github.com/Alamofire/Alamofire/pull/2608). + - Added by [Jon Shier](https://github.com/jshier) in Pull Request [#2608](https://github.com/Alamofire/Alamofire/pull/2608). - Asynchronous request creation. - Added by [Jon Shier](https://github.com/jshier) in Pull Request [#2521](https://github.com/Alamofire/Alamofire/pull/2521). - + #### Updated - `ResponseSerializer` and associated protocols' requirements and implementations. - Updated by [Jon Shier](https://github.com/jshier) in Pull Requests [#2265](https://github.com/Alamofire/Alamofire/pull/2265) and [#2639](https://github.com/Alamofire/Alamofire/pull/2639). @@ -214,7 +231,7 @@ Released on 2018-11-24. All issues associated with this milestone can be found u - Added by [Wanbok Choi (Wayne)](https://github.com/wanbok) in Pull Request [#2621](https://github.com/Alamofire/Alamofire/pull/2621) and [Jon Shier](https://github.com/jshier) in Pull Request [#2648](https://github.com/Alamofire/Alamofire/pull/2648). #### Updated -- Project Swift version to 4. +- Project Swift version to 4. - Updated by [Jon Shier](https://github.com/jshier) in Pull Request [#2648](https://github.com/Alamofire/Alamofire/pull/2648). - Various `Result` methods to be `throw`/`rethrows`. - Updated by [Stéphane Copin](https://github.com/stephanecopin) in Pull Request [#2488](https://github.com/Alamofire/Alamofire/pull/2488). @@ -283,9 +300,9 @@ Released on 2017-12-3. All issues associated with this milestone can be found us - Added by [Jon Shier](https://github.com/jshier) in Pull Request [#2361](https://github.com/Alamofire/Alamofire/pull/2361). - Separation of Usage and Advanced Usage docs from README. - - Added by [Jon Shier](https://github.com/jshier) in Pull Request + - Added by [Jon Shier](https://github.com/jshier) in Pull Request [#2360](https://github.com/Alamofire/Alamofire/pull/2360). - + #### Updated - Travis CI and Ruby dependencies. - Updated by [Jon Shier](https://github.com/jshier) in Pull Requests @@ -293,7 +310,7 @@ Released on 2017-12-3. All issues associated with this milestone can be found us - Swift Package Manager instructions. - Updated by [Ryosuke Hayashi](https://github.com/hayashikun) in Pull Request [#2341](https://github.com/Alamofire/Alamofire/pull/2341). - + #### Fixed - `#session-manager` link in Advanced Usage docs. - Fixed by [Naeem Shaikh](https://github.com/naeemshaikh90) in Pull Request @@ -443,7 +460,7 @@ Released on 2017-02-26. All issues associated with this milestone can be found u - Typo in the README in the Swift Package Manager section. - Fixed by [Sebastian Limbach](https://github.com/bastilimbach) in Pull Request [#1918](https://github.com/Alamofire/Alamofire/pull/1918). -- Issue in the "Modifying the Session Configuration" example code of the README where the +- Issue in the "Modifying the Session Configuration" example code of the README where the `defaultHTTPHeaders` property was called incorrectly. - Fixed by [Artur Antonov](https://github.com/goingreen) in Pull Request [#1927](https://github.com/Alamofire/Alamofire/pull/1927). @@ -453,7 +470,7 @@ Released on 2017-02-26. All issues associated with this milestone can be found u - Issue in the README where the POST request with parameters example was using the wrong method. - Fixed by [Pablo Bartolome](https://github.com/pbartolome) in Pull Request [#1984](https://github.com/Alamofire/Alamofire/pull/1984). -- Issue where `taskDidComplete` override closure was not calling task delegate leading to +- Issue where `taskDidComplete` override closure was not calling task delegate leading to potential memory leaks. - Fixed by [Jon Shier](https://github.com/jshier) in regards to Issue [#1938](https://github.com/Alamofire/Alamofire/pull/1938). @@ -784,7 +801,7 @@ Released on 2016-09-11. All issues associated with this milestone can be found u - `BaseTestCase` to delete contents of common directories at the start of each test. - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#1457](https://github.com/Alamofire/Alamofire/pull/1457). -- Response handler extensions by moving them into `DataRequest` and added equivalents +- Response handler extensions by moving them into `DataRequest` and added equivalents for `DownloadRequest`. - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#1457](https://github.com/Alamofire/Alamofire/pull/1457). @@ -891,8 +908,8 @@ Released on 2016-08-28. All issues associated with this milestone can be found u #### Updated - All source, test and example logic as well as project settings to compile against the Xcode 8 beta releases. - - Updated by [Kevin Harwood](https://github.com/kcharwood), - [Jon Shier](https://github.com/jshier) and + - Updated by [Kevin Harwood](https://github.com/kcharwood), + [Jon Shier](https://github.com/jshier) and [Christian Noon](https://github.com/cnoon). - Deployment targets to iOS 9.0, macOS 10.11, tvOS 9.0 and watchOS 2.0. - Updated by [Christian Noon](https://github.com/cnoon). @@ -957,8 +974,8 @@ Released on 2016-09-07. All issues associated with this milestone can be found u [#1452](https://github.com/Alamofire/Alamofire/issues/1452). - All source, test and example logic as well as project settings to compile against Xcode 7 and 8 against Swift 2.2 or 2.3 respectively. - - Updated by [Kevin Harwood](https://github.com/kcharwood), - [Jon Shier](https://github.com/jshier) and + - Updated by [Kevin Harwood](https://github.com/kcharwood), + [Jon Shier](https://github.com/jshier) and [Christian Noon](https://github.com/cnoon). - The Travis CI yaml file to support both Xcode 7.3 and 8 simultaneously. - Updated by [Christian Noon](https://github.com/cnoon). @@ -1063,7 +1080,7 @@ Released on 2016-05-08. All issues associated with this milestone can be found u - The `SesionDelegate` to no longer be `final` to allow subclassing. - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#1172](https://github.com/Alamofire/Alamofire/issues/1172) in regards to Issue - [#1145](https://github.com/Alamofire/Alamofire/issues/1145). + [#1145](https://github.com/Alamofire/Alamofire/issues/1145). - The `SessionDelegate` subscript public to allow full control when subclassing. - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#1172](https://github.com/Alamofire/Alamofire/issues/1172). @@ -1197,7 +1214,7 @@ Released on 2016-02-07. All issues associated with this milestone can be found u [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A3.2.0). #### Added -- Notifications that post when an `NSURLSessionTask` changes state to allow support for the +- Notifications that post when an `NSURLSessionTask` changes state to allow support for the network activity indicator. - Added by [Christian Noon](https://github.com/cnoon). - `Timeline` struct to capture timings throughout the lifecycle of a `Request`. @@ -1270,7 +1287,7 @@ Released on 2015-12-16. All issues associated with this milestone can be found u [#955](https://github.com/Alamofire/Alamofire/pull/955). - `ParameterEncoding` to early out when passed an empty parameters dictionary. - Updated by [Anthony Miller](https://github.com/AnthonyMDev) in Pull Request - [#954](https://github.com/Alamofire/Alamofire/pull/954). + [#954](https://github.com/Alamofire/Alamofire/pull/954). - The `certificatesInBundle` to support `cer`, `crt` and `der` extensions. - Updated by [Jacob Jennings](https://github.com/jacobjennings) in Pull Request [#956](https://github.com/Alamofire/Alamofire/pull/956). @@ -1477,7 +1494,7 @@ conforms to `ErrorType`. - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#791](https://github.com/Alamofire/Alamofire/pull/791). - All response serializers to use the new `Response` type. - - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - + - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request - [#792](https://github.com/Alamofire/Alamofire/pull/792). - The designated initializer for a `Manager` to accept a `SessionDelegate` parameter allowing dependency injection for better background session support. @@ -1504,7 +1521,7 @@ Released on 2015-09-20. All issues associated with this milestone can be found u [#206](https://github.com/Alamofire/Alamofire/issues/206). ## [2.0.1](https://github.com/Alamofire/Alamofire/releases/tag/2.0.1) -Released on 2015-09-16. All issues associated with this milestone can be found using this +Released on 2015-09-16. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.1). #### Updated @@ -1523,7 +1540,7 @@ Released on 2015-09-16. All issues associated with this milestone can be found u [#721](https://github.com/Alamofire/Alamofire/pull/721). ## [2.0.0](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0) -Released on 2015-09-09. All issues associated with this milestone can be found using this +Released on 2015-09-09. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0). #### Added @@ -1534,7 +1551,7 @@ Released on 2015-09-09. All issues associated with this milestone can be found u --- ## [2.0.0-beta.4](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.4) -Released on 2015-09-06. All issues associated with this milestone can be found using this +Released on 2015-09-06. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.4). #### Added @@ -1604,7 +1621,7 @@ conformance that could cause unwanted URL request referencing. - Removed by [Christian Noon](https://github.com/cnoon). ## [2.0.0-beta.2](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.2) -Released on 2015-08-24. All issues associated with this milestone can be found using this +Released on 2015-08-24. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.2). #### Added @@ -1660,7 +1677,7 @@ in the test suite. [#693](https://github.com/Alamofire/Alamofire/issues/693). ## [2.0.0-beta.1](https://github.com/Alamofire/Alamofire/releases/tag/2.0.0-beta.1) -Released on 2015-08-10. All issues associated with this milestone can be found using this +Released on 2015-08-10. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A2.0.0-beta.1). #### Added @@ -1762,7 +1779,7 @@ better support `.Custom` encoding. --- ## [1.3.1](https://github.com/Alamofire/Alamofire/releases/tag/1.3.1) -Released on 2015-08-10. All issues associated with this milestone can be found using this +Released on 2015-08-10. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.3.1). #### Fixed @@ -1772,7 +1789,7 @@ task override closure was set. [#622](https://github.com/Alamofire/Alamofire/issues/622). ## [1.3.0](https://github.com/Alamofire/Alamofire/releases/tag/1.3.0) -Released on 2015-07-24. All issues associated with this milestone can be found using this +Released on 2015-07-24. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.3.0). #### Added @@ -1903,7 +1920,7 @@ much more powerful form of response serialization. --- ## [1.2.3](https://github.com/Alamofire/Alamofire/releases/tag/1.2.3) -Released on 2015-06-12. All issues associated with this milestone can be found using this +Released on 2015-06-12. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.2.3). #### Added @@ -1966,7 +1983,7 @@ Released on 2015-06-12. All issues associated with this milestone can be found u [#516](https://github.com/Alamofire/Alamofire/pull/516). ## [1.2.2](https://github.com/Alamofire/Alamofire/releases/tag/1.2.2) -Released on 2015-05-13. All issues associated with this milestone can be found using this +Released on 2015-05-13. All issues associated with this milestone can be found using this [filter](https://github.com/Alamofire/Alamofire/issues?utf8=✓&q=milestone%3A1.2.2). #### Added @@ -2061,7 +2078,7 @@ Released on 2015-04-09. test. - Added by [Mattt Thompson](https://github.com/mattt) in regards to Issue [#370](https://github.com/Alamofire/Alamofire/pull/370). -- New `backgroundCompletionHandler` property to the `Manager` called when the +- New `backgroundCompletionHandler` property to the `Manager` called when the session background tasks finish. - Added by [Christian Noon](https://github.com/cnoon) in Pull Request [#317](https://github.com/Alamofire/Alamofire/pull/317). @@ -2088,9 +2105,9 @@ per the HTTP/1.1 specification. - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#317](https://github.com/Alamofire/Alamofire/pull/317). - `SessionDelegate` class to `final`. - - Updated by [Mattt Thompson](https://github.com/mattt). + - Updated by [Mattt Thompson](https://github.com/mattt). - `SessionDelegate` header documentation for method override properties. - - Updated by [Mattt Thompson](https://github.com/mattt). + - Updated by [Mattt Thompson](https://github.com/mattt). - Xcode project to set `APPLICATION_EXTENSION_API_ONLY` to `YES` for OS X target. - Updated by [Mattt Thompson](https://github.com/mattt). @@ -2139,7 +2156,7 @@ Released on 2015-03-26. - Ono XML response serializer example in the README. - Updated by [Mattt Thompson](https://github.com/mattt). - Travis-CI settings to only build the master branch. - - Updated by [Mattt Thompson](https://github.com/mattt). + - Updated by [Mattt Thompson](https://github.com/mattt). - Code signing identities for the frameworks and targets to better support Carthage. - Updated by [Christian Noon](https://github.com/cnoon) in Pull Request [#400](https://github.com/Alamofire/Alamofire/pull/400). @@ -2202,7 +2219,7 @@ Embedded Frameworks. - Spec validation error with CocoaPods 0.36.0.beta-1 by disabling -b flags in `cURL` debug on OSX. - Fixed by [Mattt Thompson](https://github.com/mattt). -- Travis-CI build issue by adding suppport for an `iOS Example` scheme. +- Travis-CI build issue by adding suppport for an `iOS Example` scheme. - Fixed by [Yasuharu Ozaki](https://github.com/yasuoza) in Pull Request [#322](https://github.com/Alamofire/Alamofire/pull/322). @@ -2354,7 +2371,7 @@ Released on 2014-10-20. - Response handler threading issue by adding a `subdelegateQueue` to the `SessionDelegate`. - Fixed by [Essan Parto](https://github.com/parto) in Pull Request [#171](https://github.com/Alamofire/Alamofire/pull/171). -- Challenge issue where basic auth credentials were not being unwrapped. +- Challenge issue where basic auth credentials were not being unwrapped. - Fixed by [Mattt Thompson](https://github.com/mattt). ## [1.0.0](https://github.com/Alamofire/Alamofire/releases/tag/1.0.0) diff --git a/docs/Classes.html b/docs/Classes.html index 94749fa1f..9d80a8791 100644 --- a/docs/Classes.html +++ b/docs/Classes.html @@ -1454,7 +1454,7 @@

Declaration

diff --git a/docs/Classes/Adapter.html b/docs/Classes/Adapter.html index bd5b12383..baaf26cd3 100644 --- a/docs/Classes/Adapter.html +++ b/docs/Classes/Adapter.html @@ -480,7 +480,7 @@

Declaration

diff --git a/docs/Classes/AlamofireNotifications.html b/docs/Classes/AlamofireNotifications.html index e668c1676..3cb88e571 100644 --- a/docs/Classes/AlamofireNotifications.html +++ b/docs/Classes/AlamofireNotifications.html @@ -635,7 +635,7 @@

Declaration

diff --git a/docs/Classes/ClosureEventMonitor.html b/docs/Classes/ClosureEventMonitor.html index 8cc691aca..b72f2b439 100644 --- a/docs/Classes/ClosureEventMonitor.html +++ b/docs/Classes/ClosureEventMonitor.html @@ -2540,7 +2540,7 @@

Declaration

diff --git a/docs/Classes/CompositeEventMonitor.html b/docs/Classes/CompositeEventMonitor.html index 87b633b04..d974c8b6d 100644 --- a/docs/Classes/CompositeEventMonitor.html +++ b/docs/Classes/CompositeEventMonitor.html @@ -1522,7 +1522,7 @@

Declaration

diff --git a/docs/Classes/CompositeTrustEvaluator.html b/docs/Classes/CompositeTrustEvaluator.html index 6b78c2cc2..0a75e06f3 100644 --- a/docs/Classes/CompositeTrustEvaluator.html +++ b/docs/Classes/CompositeTrustEvaluator.html @@ -500,7 +500,7 @@

Declaration

diff --git a/docs/Classes/ConnectionLostRetryPolicy.html b/docs/Classes/ConnectionLostRetryPolicy.html index 3a9414035..8a69bcc69 100644 --- a/docs/Classes/ConnectionLostRetryPolicy.html +++ b/docs/Classes/ConnectionLostRetryPolicy.html @@ -519,7 +519,7 @@

Parameters

diff --git a/docs/Classes/DataRequest.html b/docs/Classes/DataRequest.html index a66452414..2988b23ad 100644 --- a/docs/Classes/DataRequest.html +++ b/docs/Classes/DataRequest.html @@ -1203,7 +1203,7 @@

Return Value

diff --git a/docs/Classes/DataResponseSerializer.html b/docs/Classes/DataResponseSerializer.html index e0ffc2cc9..3fdfa1f9d 100644 --- a/docs/Classes/DataResponseSerializer.html +++ b/docs/Classes/DataResponseSerializer.html @@ -569,7 +569,7 @@

Declaration

diff --git a/docs/Classes/DecodableResponseSerializer.html b/docs/Classes/DecodableResponseSerializer.html index fbd3b29e8..30575ce0c 100644 --- a/docs/Classes/DecodableResponseSerializer.html +++ b/docs/Classes/DecodableResponseSerializer.html @@ -610,7 +610,7 @@

Declaration

diff --git a/docs/Classes/DefaultTrustEvaluator.html b/docs/Classes/DefaultTrustEvaluator.html index b47e3e44f..d8dc9cee4 100644 --- a/docs/Classes/DefaultTrustEvaluator.html +++ b/docs/Classes/DefaultTrustEvaluator.html @@ -501,7 +501,7 @@

Declaration

diff --git a/docs/Classes/DisabledEvaluator.html b/docs/Classes/DisabledEvaluator.html index f4f5bdb1e..31def5a9a 100644 --- a/docs/Classes/DisabledEvaluator.html +++ b/docs/Classes/DisabledEvaluator.html @@ -482,7 +482,7 @@

Declaration

diff --git a/docs/Classes/DownloadRequest.html b/docs/Classes/DownloadRequest.html index c15cbee83..84ce511c0 100644 --- a/docs/Classes/DownloadRequest.html +++ b/docs/Classes/DownloadRequest.html @@ -1399,7 +1399,7 @@

Return Value

diff --git a/docs/Classes/DownloadRequest/Downloadable.html b/docs/Classes/DownloadRequest/Downloadable.html index 3c0edd153..5659bcf31 100644 --- a/docs/Classes/DownloadRequest/Downloadable.html +++ b/docs/Classes/DownloadRequest/Downloadable.html @@ -481,7 +481,7 @@

Declaration

diff --git a/docs/Classes/DownloadRequest/Options.html b/docs/Classes/DownloadRequest/Options.html index 111010bfe..d649f846c 100644 --- a/docs/Classes/DownloadRequest/Options.html +++ b/docs/Classes/DownloadRequest/Options.html @@ -559,7 +559,7 @@

Return Value

diff --git a/docs/Classes/Interceptor.html b/docs/Classes/Interceptor.html index 8d6307430..8b865909f 100644 --- a/docs/Classes/Interceptor.html +++ b/docs/Classes/Interceptor.html @@ -618,7 +618,7 @@

Declaration

diff --git a/docs/Classes/JSONParameterEncoder.html b/docs/Classes/JSONParameterEncoder.html index 087bf2c8e..b1c98d694 100644 --- a/docs/Classes/JSONParameterEncoder.html +++ b/docs/Classes/JSONParameterEncoder.html @@ -611,7 +611,7 @@

Declaration

diff --git a/docs/Classes/JSONResponseSerializer.html b/docs/Classes/JSONResponseSerializer.html index 6c58f29f1..e1cb68709 100644 --- a/docs/Classes/JSONResponseSerializer.html +++ b/docs/Classes/JSONResponseSerializer.html @@ -609,7 +609,7 @@

Declaration

diff --git a/docs/Classes/MultipartFormData.html b/docs/Classes/MultipartFormData.html index 5eeb53d6f..560b65dc4 100644 --- a/docs/Classes/MultipartFormData.html +++ b/docs/Classes/MultipartFormData.html @@ -1152,7 +1152,7 @@

Parameters

diff --git a/docs/Classes/NetworkReachabilityManager.html b/docs/Classes/NetworkReachabilityManager.html index 9247e3c48..16cbcac66 100644 --- a/docs/Classes/NetworkReachabilityManager.html +++ b/docs/Classes/NetworkReachabilityManager.html @@ -946,7 +946,7 @@

Declaration

diff --git a/docs/Classes/NetworkReachabilityManager/ConnectionType.html b/docs/Classes/NetworkReachabilityManager/ConnectionType.html index 5b999850b..7a78cd4b7 100644 --- a/docs/Classes/NetworkReachabilityManager/ConnectionType.html +++ b/docs/Classes/NetworkReachabilityManager/ConnectionType.html @@ -486,7 +486,7 @@

Declaration

diff --git a/docs/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html b/docs/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html index 5d8956fd6..6219a7009 100644 --- a/docs/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html +++ b/docs/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html @@ -514,7 +514,7 @@

Declaration

diff --git a/docs/Classes/PinnedCertificatesTrustEvaluator.html b/docs/Classes/PinnedCertificatesTrustEvaluator.html index ccfab1b00..169102a08 100644 --- a/docs/Classes/PinnedCertificatesTrustEvaluator.html +++ b/docs/Classes/PinnedCertificatesTrustEvaluator.html @@ -548,7 +548,7 @@

Declaration

diff --git a/docs/Classes/PublicKeysTrustEvaluator.html b/docs/Classes/PublicKeysTrustEvaluator.html index 1fd7a2a2f..ca9deae7a 100644 --- a/docs/Classes/PublicKeysTrustEvaluator.html +++ b/docs/Classes/PublicKeysTrustEvaluator.html @@ -539,7 +539,7 @@

Declaration

diff --git a/docs/Classes/Request.html b/docs/Classes/Request.html index f554c8a6d..fe0acbb41 100644 --- a/docs/Classes/Request.html +++ b/docs/Classes/Request.html @@ -445,6 +445,8 @@

Request

  • cancelled: Set when cancel() is called. Any tasks created for the Request will have cancel() called on them. Unlike resumed or suspended, once in the cancelled state, the Request can no longer transition to any other state.
  • +
  • finished: Set when all response serialization completion closures have been cleared on the Request and + queued on their respective queues.
  • See more @@ -666,7 +668,7 @@

    Updated State

    Declaration

    Swift

    -
    public fileprivate(set) var state: State { get set }
    +
    public var state: State { get }
    @@ -676,9 +678,9 @@

    Declaration

  • - - - isCancelled + + + isInitialized
    @@ -686,14 +688,14 @@

    Declaration

    -

    Returns whether state is .cancelled.

    +

    Returns whether state is .initialized.

    Declaration

    Swift

    -
    public var isCancelled: Bool { get }
    +
    public var isInitialized: Bool { get }
    @@ -757,9 +759,9 @@

    Declaration

  • - - - isInitialized + + + isCancelled
    @@ -767,14 +769,41 @@

    Declaration

    -

    Returns whether state is .initialized.

    +

    Returns whether state is .cancelled.

    Declaration

    Swift

    -
    public var isInitialized: Bool { get }
    +
    public var isCancelled: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isFinished + +
    +
    +
    +
    +
    +
    +

    Returns whether state is .finished.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isFinished: Bool { get }
    @@ -2441,7 +2470,7 @@

    Declaration

    diff --git a/docs/Classes/Request/State.html b/docs/Classes/Request/State.html index dfa846c87..d0c596130 100644 --- a/docs/Classes/Request/State.html +++ b/docs/Classes/Request/State.html @@ -422,6 +422,8 @@

    State

  • cancelled: Set when cancel() is called. Any tasks created for the Request will have cancel() called on them. Unlike resumed or suspended, once in the cancelled state, the Request can no longer transition to any other state.
  • +
  • finished: Set when all response serialization completion closures have been cleared on the Request and + queued on their respective queues.
  • @@ -539,6 +541,33 @@

    Declaration

  • +
  • +
    + + + + finished + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case finished
    + +
    +
    +
    +
    +
  • @@ -547,7 +576,7 @@

    Declaration

    diff --git a/docs/Classes/Retrier.html b/docs/Classes/Retrier.html index af9730377..db7fd78f5 100644 --- a/docs/Classes/Retrier.html +++ b/docs/Classes/Retrier.html @@ -484,7 +484,7 @@

    Declaration

    diff --git a/docs/Classes/RetryPolicy.html b/docs/Classes/RetryPolicy.html index 1ee28d47e..66c625437 100644 --- a/docs/Classes/RetryPolicy.html +++ b/docs/Classes/RetryPolicy.html @@ -899,7 +899,7 @@

    Declaration

    diff --git a/docs/Classes/RevocationTrustEvaluator.html b/docs/Classes/RevocationTrustEvaluator.html index 4b90fbc68..5564e862a 100644 --- a/docs/Classes/RevocationTrustEvaluator.html +++ b/docs/Classes/RevocationTrustEvaluator.html @@ -565,7 +565,7 @@

    Declaration

    diff --git a/docs/Classes/RevocationTrustEvaluator/Options.html b/docs/Classes/RevocationTrustEvaluator/Options.html index d880e5e75..795d85528 100644 --- a/docs/Classes/RevocationTrustEvaluator/Options.html +++ b/docs/Classes/RevocationTrustEvaluator/Options.html @@ -665,7 +665,7 @@

    Parameters

    diff --git a/docs/Classes/ServerTrustManager.html b/docs/Classes/ServerTrustManager.html index e679329ec..ee7d4001c 100644 --- a/docs/Classes/ServerTrustManager.html +++ b/docs/Classes/ServerTrustManager.html @@ -604,7 +604,7 @@

    Return Value

    diff --git a/docs/Classes/Session.html b/docs/Classes/Session.html index 233534d73..1348e028d 100644 --- a/docs/Classes/Session.html +++ b/docs/Classes/Session.html @@ -1454,93 +1454,23 @@

    Declaration

    + + +
    +
    + + + +

    SessionStateProvider

    +
    +
    +
    - - -
    -
    - - - -

    SessionStateProvider

    -
    -
    -
    diff --git a/docs/Classes/SessionDelegate.html b/docs/Classes/SessionDelegate.html index a4ef3da08..d75b11708 100644 --- a/docs/Classes/SessionDelegate.html +++ b/docs/Classes/SessionDelegate.html @@ -844,7 +844,7 @@

    Declaration

    diff --git a/docs/Classes/StringResponseSerializer.html b/docs/Classes/StringResponseSerializer.html index d31b2bb3c..2fe19eabd 100644 --- a/docs/Classes/StringResponseSerializer.html +++ b/docs/Classes/StringResponseSerializer.html @@ -610,7 +610,7 @@

    Declaration

    diff --git a/docs/Classes/URLEncodedFormEncoder.html b/docs/Classes/URLEncodedFormEncoder.html index 01a7ed891..1f894fe03 100644 --- a/docs/Classes/URLEncodedFormEncoder.html +++ b/docs/Classes/URLEncodedFormEncoder.html @@ -856,7 +856,7 @@

    Return Value

    diff --git a/docs/Classes/URLEncodedFormEncoder/ArrayEncoding.html b/docs/Classes/URLEncodedFormEncoder/ArrayEncoding.html index 5bdc8e3e6..166cd4ab5 100644 --- a/docs/Classes/URLEncodedFormEncoder/ArrayEncoding.html +++ b/docs/Classes/URLEncodedFormEncoder/ArrayEncoding.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/Classes/URLEncodedFormEncoder/BoolEncoding.html b/docs/Classes/URLEncodedFormEncoder/BoolEncoding.html index a0f0f3265..58e12ec1e 100644 --- a/docs/Classes/URLEncodedFormEncoder/BoolEncoding.html +++ b/docs/Classes/URLEncodedFormEncoder/BoolEncoding.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/Classes/URLEncodedFormEncoder/Error.html b/docs/Classes/URLEncodedFormEncoder/Error.html index 3f998db1f..b91f28a4e 100644 --- a/docs/Classes/URLEncodedFormEncoder/Error.html +++ b/docs/Classes/URLEncodedFormEncoder/Error.html @@ -454,7 +454,7 @@

    Declaration

    diff --git a/docs/Classes/URLEncodedFormEncoder/SpaceEncoding.html b/docs/Classes/URLEncodedFormEncoder/SpaceEncoding.html index 51987c442..c847711a5 100644 --- a/docs/Classes/URLEncodedFormEncoder/SpaceEncoding.html +++ b/docs/Classes/URLEncodedFormEncoder/SpaceEncoding.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/Classes/URLEncodedFormParameterEncoder.html b/docs/Classes/URLEncodedFormParameterEncoder.html index 9a093c6fa..b53cb57fc 100644 --- a/docs/Classes/URLEncodedFormParameterEncoder.html +++ b/docs/Classes/URLEncodedFormParameterEncoder.html @@ -633,7 +633,7 @@

    Declaration

    diff --git a/docs/Classes/URLEncodedFormParameterEncoder/Destination.html b/docs/Classes/URLEncodedFormParameterEncoder/Destination.html index 390cb6626..1a325a2f8 100644 --- a/docs/Classes/URLEncodedFormParameterEncoder/Destination.html +++ b/docs/Classes/URLEncodedFormParameterEncoder/Destination.html @@ -509,7 +509,7 @@

    Declaration

    diff --git a/docs/Classes/UploadRequest.html b/docs/Classes/UploadRequest.html index 49ef5b989..52c6736e5 100644 --- a/docs/Classes/UploadRequest.html +++ b/docs/Classes/UploadRequest.html @@ -557,7 +557,7 @@

    Declaration

    diff --git a/docs/Classes/UploadRequest/Uploadable.html b/docs/Classes/UploadRequest/Uploadable.html index baa513902..cc489785b 100644 --- a/docs/Classes/UploadRequest/Uploadable.html +++ b/docs/Classes/UploadRequest/Uploadable.html @@ -546,7 +546,7 @@

    Declaration

    diff --git a/docs/Enums.html b/docs/Enums.html index 5cb253d3a..bfb4236bc 100644 --- a/docs/Enums.html +++ b/docs/Enums.html @@ -561,7 +561,7 @@

    Declaration

    diff --git a/docs/Enums/AF.html b/docs/Enums/AF.html index 808fa73eb..42f0ea262 100644 --- a/docs/Enums/AF.html +++ b/docs/Enums/AF.html @@ -2035,7 +2035,7 @@

    Return Value

    diff --git a/docs/Enums/AFError.html b/docs/Enums/AFError.html index ef216620b..d844dc483 100644 --- a/docs/Enums/AFError.html +++ b/docs/Enums/AFError.html @@ -1555,7 +1555,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/MultipartEncodingFailureReason.html b/docs/Enums/AFError/MultipartEncodingFailureReason.html index 0451ac8a4..e403ef6a0 100644 --- a/docs/Enums/AFError/MultipartEncodingFailureReason.html +++ b/docs/Enums/AFError/MultipartEncodingFailureReason.html @@ -804,7 +804,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/ParameterEncoderFailureReason.html b/docs/Enums/AFError/ParameterEncoderFailureReason.html index 10b09249c..16c503acc 100644 --- a/docs/Enums/AFError/ParameterEncoderFailureReason.html +++ b/docs/Enums/AFError/ParameterEncoderFailureReason.html @@ -509,7 +509,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html b/docs/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html index 80f9150d1..814472bcc 100644 --- a/docs/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html +++ b/docs/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/ParameterEncodingFailureReason.html b/docs/Enums/AFError/ParameterEncodingFailureReason.html index e6b621c8a..c4e4e6883 100644 --- a/docs/Enums/AFError/ParameterEncodingFailureReason.html +++ b/docs/Enums/AFError/ParameterEncodingFailureReason.html @@ -487,7 +487,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/ResponseSerializationFailureReason.html b/docs/Enums/AFError/ResponseSerializationFailureReason.html index 2b5e9986d..2e9b4dfbf 100644 --- a/docs/Enums/AFError/ResponseSerializationFailureReason.html +++ b/docs/Enums/AFError/ResponseSerializationFailureReason.html @@ -608,6 +608,33 @@

    Declaration

    +
  • +
    + + + + responseSerializerAddedAfterRequestFinished + +
    +
    +
    +
    +
    +
    +

    A response serializer was added to the request after the request was already finished.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case responseSerializerAddedAfterRequestFinished
    + +
    +
    +
    +
    +
  • @@ -616,7 +643,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/ResponseValidationFailureReason.html b/docs/Enums/AFError/ResponseValidationFailureReason.html index a66eae9ea..b4f7d6f26 100644 --- a/docs/Enums/AFError/ResponseValidationFailureReason.html +++ b/docs/Enums/AFError/ResponseValidationFailureReason.html @@ -572,7 +572,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/ServerTrustFailureReason.html b/docs/Enums/AFError/ServerTrustFailureReason.html index d39f9d91f..575589e63 100644 --- a/docs/Enums/AFError/ServerTrustFailureReason.html +++ b/docs/Enums/AFError/ServerTrustFailureReason.html @@ -752,7 +752,7 @@

    Declaration

    diff --git a/docs/Enums/AFError/ServerTrustFailureReason/Output.html b/docs/Enums/AFError/ServerTrustFailureReason/Output.html index ffdde1084..391539b51 100644 --- a/docs/Enums/AFError/ServerTrustFailureReason/Output.html +++ b/docs/Enums/AFError/ServerTrustFailureReason/Output.html @@ -535,7 +535,7 @@

    Declaration

    diff --git a/docs/Enums/HTTPMethod.html b/docs/Enums/HTTPMethod.html index b897716f9..4331b5b96 100644 --- a/docs/Enums/HTTPMethod.html +++ b/docs/Enums/HTTPMethod.html @@ -672,7 +672,7 @@

    Declaration

    diff --git a/docs/Enums/RetryResult.html b/docs/Enums/RetryResult.html index 57ebbf76e..f049ebc7d 100644 --- a/docs/Enums/RetryResult.html +++ b/docs/Enums/RetryResult.html @@ -535,7 +535,7 @@

    Declaration

    diff --git a/docs/Extensions.html b/docs/Extensions.html index 461b32f68..513433470 100644 --- a/docs/Extensions.html +++ b/docs/Extensions.html @@ -725,7 +725,7 @@

    Declaration

    diff --git a/docs/Extensions/Array.html b/docs/Extensions/Array.html index 3844b9445..933da9712 100644 --- a/docs/Extensions/Array.html +++ b/docs/Extensions/Array.html @@ -488,7 +488,7 @@

    Return Value

    diff --git a/docs/Extensions/CharacterSet.html b/docs/Extensions/CharacterSet.html index 8f96cd34e..dd838ef24 100644 --- a/docs/Extensions/CharacterSet.html +++ b/docs/Extensions/CharacterSet.html @@ -464,7 +464,7 @@

    Declaration

    diff --git a/docs/Extensions/Error.html b/docs/Extensions/Error.html index 6601d6411..2bb3aeda0 100644 --- a/docs/Extensions/Error.html +++ b/docs/Extensions/Error.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/Extensions/HTTPURLResponse.html b/docs/Extensions/HTTPURLResponse.html index 3218ab19d..64eefbc9b 100644 --- a/docs/Extensions/HTTPURLResponse.html +++ b/docs/Extensions/HTTPURLResponse.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/Extensions/Notification.html b/docs/Extensions/Notification.html index db2450836..8ec4da8e5 100644 --- a/docs/Extensions/Notification.html +++ b/docs/Extensions/Notification.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/Extensions/String.html b/docs/Extensions/String.html index 9b7a85431..c85f3782e 100644 --- a/docs/Extensions/String.html +++ b/docs/Extensions/String.html @@ -462,7 +462,7 @@

    Return Value

    diff --git a/docs/Extensions/URL.html b/docs/Extensions/URL.html index bc9dfe490..f9ff4c8b7 100644 --- a/docs/Extensions/URL.html +++ b/docs/Extensions/URL.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/Extensions/URLComponents.html b/docs/Extensions/URLComponents.html index b32e5ce05..13d960dc9 100644 --- a/docs/Extensions/URLComponents.html +++ b/docs/Extensions/URLComponents.html @@ -462,7 +462,7 @@

    Return Value

    diff --git a/docs/Extensions/URLRequest.html b/docs/Extensions/URLRequest.html index 38b3f978b..a8efafd7a 100644 --- a/docs/Extensions/URLRequest.html +++ b/docs/Extensions/URLRequest.html @@ -594,7 +594,7 @@

    Declaration

    diff --git a/docs/Extensions/URLSessionConfiguration.html b/docs/Extensions/URLSessionConfiguration.html index 33756ce23..7699624c5 100644 --- a/docs/Extensions/URLSessionConfiguration.html +++ b/docs/Extensions/URLSessionConfiguration.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/Functions.html b/docs/Functions.html index 74ac61aa0..9debbb7c1 100644 --- a/docs/Functions.html +++ b/docs/Functions.html @@ -486,7 +486,7 @@

    Return Value

    diff --git a/docs/Protocols.html b/docs/Protocols.html index 0c998fae2..70bf255a1 100644 --- a/docs/Protocols.html +++ b/docs/Protocols.html @@ -1082,7 +1082,7 @@

    Declaration

    diff --git a/docs/Protocols/AlamofireExtended.html b/docs/Protocols/AlamofireExtended.html index 91cf28079..99b243783 100644 --- a/docs/Protocols/AlamofireExtended.html +++ b/docs/Protocols/AlamofireExtended.html @@ -517,7 +517,7 @@

    Declaration

    diff --git a/docs/Protocols/CachedResponseHandler.html b/docs/Protocols/CachedResponseHandler.html index a0f66c5a0..959b21662 100644 --- a/docs/Protocols/CachedResponseHandler.html +++ b/docs/Protocols/CachedResponseHandler.html @@ -505,7 +505,7 @@

    Parameters

    diff --git a/docs/Protocols/DataDecoder.html b/docs/Protocols/DataDecoder.html index a8ca06e5b..1b2d6f13f 100644 --- a/docs/Protocols/DataDecoder.html +++ b/docs/Protocols/DataDecoder.html @@ -494,7 +494,7 @@

    Return Value

    diff --git a/docs/Protocols/DataResponseSerializerProtocol.html b/docs/Protocols/DataResponseSerializerProtocol.html index 127bc6a24..fc76c4958 100644 --- a/docs/Protocols/DataResponseSerializerProtocol.html +++ b/docs/Protocols/DataResponseSerializerProtocol.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/Protocols/DownloadResponseSerializerProtocol.html b/docs/Protocols/DownloadResponseSerializerProtocol.html index 50fa21d8d..01bcfa179 100644 --- a/docs/Protocols/DownloadResponseSerializerProtocol.html +++ b/docs/Protocols/DownloadResponseSerializerProtocol.html @@ -488,7 +488,7 @@

    Declaration

    diff --git a/docs/Protocols/EmptyResponse.html b/docs/Protocols/EmptyResponse.html index c0f73085b..0dd12d206 100644 --- a/docs/Protocols/EmptyResponse.html +++ b/docs/Protocols/EmptyResponse.html @@ -454,7 +454,7 @@

    Declaration

    diff --git a/docs/Protocols/EventMonitor.html b/docs/Protocols/EventMonitor.html index 32c592cca..55e736b1e 100644 --- a/docs/Protocols/EventMonitor.html +++ b/docs/Protocols/EventMonitor.html @@ -1898,7 +1898,7 @@

    Declaration

    diff --git a/docs/Protocols/ParameterEncoder.html b/docs/Protocols/ParameterEncoder.html index 1e522202f..3da213b0d 100644 --- a/docs/Protocols/ParameterEncoder.html +++ b/docs/Protocols/ParameterEncoder.html @@ -495,7 +495,7 @@

    Return Value

    diff --git a/docs/Protocols/ParameterEncoding.html b/docs/Protocols/ParameterEncoding.html index 2b53abd0e..d05af4c22 100644 --- a/docs/Protocols/ParameterEncoding.html +++ b/docs/Protocols/ParameterEncoding.html @@ -494,7 +494,7 @@

    Return Value

    diff --git a/docs/Protocols/RedirectHandler.html b/docs/Protocols/RedirectHandler.html index 8eea14785..d8153431a 100644 --- a/docs/Protocols/RedirectHandler.html +++ b/docs/Protocols/RedirectHandler.html @@ -517,7 +517,7 @@

    Parameters

    diff --git a/docs/Protocols/RequestAdapter.html b/docs/Protocols/RequestAdapter.html index c787681ed..8feb9edd4 100644 --- a/docs/Protocols/RequestAdapter.html +++ b/docs/Protocols/RequestAdapter.html @@ -497,7 +497,7 @@

    Parameters

    diff --git a/docs/Protocols/RequestDelegate.html b/docs/Protocols/RequestDelegate.html index d14b55402..d3464fb38 100644 --- a/docs/Protocols/RequestDelegate.html +++ b/docs/Protocols/RequestDelegate.html @@ -500,114 +500,6 @@

    Declaration

    -
  • -
    - - - - cancelRequest(_:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func cancelRequest(_ request: Request)
    - -
    -
    -
    -
    -
  • -
  • -
    - - - - cancelDownloadRequest(_:byProducingResumeData:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func cancelDownloadRequest(_ request: DownloadRequest, byProducingResumeData: @escaping (Data?) -> Void)
    - -
    -
    -
    -
    -
  • -
  • -
    - - - - suspendRequest(_:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func suspendRequest(_ request: Request)
    - -
    -
    -
    -
    -
  • -
  • -
    - - - - resumeRequest(_:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func resumeRequest(_ request: Request)
    - -
    -
    -
    -
    -
  • @@ -616,7 +508,7 @@

    Declaration

    diff --git a/docs/Protocols/RequestInterceptor.html b/docs/Protocols/RequestInterceptor.html index e7489a1c8..8815f54d0 100644 --- a/docs/Protocols/RequestInterceptor.html +++ b/docs/Protocols/RequestInterceptor.html @@ -489,7 +489,7 @@

    Declaration

    diff --git a/docs/Protocols/RequestRetrier.html b/docs/Protocols/RequestRetrier.html index c13e37205..be6441c96 100644 --- a/docs/Protocols/RequestRetrier.html +++ b/docs/Protocols/RequestRetrier.html @@ -514,7 +514,7 @@

    Parameters

    diff --git a/docs/Protocols/ResponseSerializer.html b/docs/Protocols/ResponseSerializer.html index a50fa6448..3c918bdfa 100644 --- a/docs/Protocols/ResponseSerializer.html +++ b/docs/Protocols/ResponseSerializer.html @@ -658,7 +658,7 @@

    Declaration

    diff --git a/docs/Protocols/ServerTrustEvaluating.html b/docs/Protocols/ServerTrustEvaluating.html index 8b403e1ce..03680eb5c 100644 --- a/docs/Protocols/ServerTrustEvaluating.html +++ b/docs/Protocols/ServerTrustEvaluating.html @@ -489,7 +489,7 @@

    Return Value

    diff --git a/docs/Protocols/URLConvertible.html b/docs/Protocols/URLConvertible.html index 96f90306f..804bed07e 100644 --- a/docs/Protocols/URLConvertible.html +++ b/docs/Protocols/URLConvertible.html @@ -464,7 +464,7 @@

    Return Value

    diff --git a/docs/Protocols/URLRequestConvertible.html b/docs/Protocols/URLRequestConvertible.html index 0965d6067..1c4cb7e8e 100644 --- a/docs/Protocols/URLRequestConvertible.html +++ b/docs/Protocols/URLRequestConvertible.html @@ -497,7 +497,7 @@

    Declaration

    diff --git a/docs/Protocols/UploadableConvertible.html b/docs/Protocols/UploadableConvertible.html index 0231cfed1..861a4b50d 100644 --- a/docs/Protocols/UploadableConvertible.html +++ b/docs/Protocols/UploadableConvertible.html @@ -454,7 +454,7 @@

    Declaration

    diff --git a/docs/Structs.html b/docs/Structs.html index 7d96f269f..376cf95a7 100644 --- a/docs/Structs.html +++ b/docs/Structs.html @@ -766,7 +766,7 @@

    Declaration

    diff --git a/docs/Structs/AlamofireExtension.html b/docs/Structs/AlamofireExtension.html index eba0f6c52..f6dde80ba 100644 --- a/docs/Structs/AlamofireExtension.html +++ b/docs/Structs/AlamofireExtension.html @@ -1308,7 +1308,7 @@

    Declaration

    diff --git a/docs/Structs/DataResponse.html b/docs/Structs/DataResponse.html index c1ec6d7f0..98986c003 100644 --- a/docs/Structs/DataResponse.html +++ b/docs/Structs/DataResponse.html @@ -1047,7 +1047,7 @@

    Return Value

    diff --git a/docs/Structs/DownloadResponse.html b/docs/Structs/DownloadResponse.html index 9242bed38..723ae84ae 100644 --- a/docs/Structs/DownloadResponse.html +++ b/docs/Structs/DownloadResponse.html @@ -1100,7 +1100,7 @@

    Return Value

    diff --git a/docs/Structs/Empty.html b/docs/Structs/Empty.html index 351423390..e68b0cdad 100644 --- a/docs/Structs/Empty.html +++ b/docs/Structs/Empty.html @@ -492,7 +492,7 @@

    Declaration

    diff --git a/docs/Structs/HTTPHeader.html b/docs/Structs/HTTPHeader.html index a8d60b7a6..c10076e18 100644 --- a/docs/Structs/HTTPHeader.html +++ b/docs/Structs/HTTPHeader.html @@ -1164,7 +1164,7 @@

    Declaration

    diff --git a/docs/Structs/HTTPHeaders.html b/docs/Structs/HTTPHeaders.html index 9a15df014..a1f135dbf 100644 --- a/docs/Structs/HTTPHeaders.html +++ b/docs/Structs/HTTPHeaders.html @@ -1214,7 +1214,7 @@

    Declaration

    diff --git a/docs/Structs/JSONEncoding.html b/docs/Structs/JSONEncoding.html index e3ae43c5a..100e4e855 100644 --- a/docs/Structs/JSONEncoding.html +++ b/docs/Structs/JSONEncoding.html @@ -722,7 +722,7 @@

    Return Value

    diff --git a/docs/Structs/Redirector.html b/docs/Structs/Redirector.html index 5e98c17d5..386b0f85b 100644 --- a/docs/Structs/Redirector.html +++ b/docs/Structs/Redirector.html @@ -621,7 +621,7 @@

    Declaration

    diff --git a/docs/Structs/Redirector/Behavior.html b/docs/Structs/Redirector/Behavior.html index 34868f96e..b7fab8c38 100644 --- a/docs/Structs/Redirector/Behavior.html +++ b/docs/Structs/Redirector/Behavior.html @@ -514,7 +514,7 @@

    Declaration

    diff --git a/docs/Structs/ResponseCacher.html b/docs/Structs/ResponseCacher.html index f3ab7d01a..efaaa6b1b 100644 --- a/docs/Structs/ResponseCacher.html +++ b/docs/Structs/ResponseCacher.html @@ -621,7 +621,7 @@

    Declaration

    diff --git a/docs/Structs/ResponseCacher/Behavior.html b/docs/Structs/ResponseCacher/Behavior.html index e4da9b01c..c0eb27340 100644 --- a/docs/Structs/ResponseCacher/Behavior.html +++ b/docs/Structs/ResponseCacher/Behavior.html @@ -514,7 +514,7 @@

    Declaration

    diff --git a/docs/Structs/URLEncoding.html b/docs/Structs/URLEncoding.html index c0066e064..50dde08d2 100644 --- a/docs/Structs/URLEncoding.html +++ b/docs/Structs/URLEncoding.html @@ -998,7 +998,7 @@

    Return Value

    diff --git a/docs/Structs/URLEncoding/ArrayEncoding.html b/docs/Structs/URLEncoding/ArrayEncoding.html index 1fbfaaad5..6152f348a 100644 --- a/docs/Structs/URLEncoding/ArrayEncoding.html +++ b/docs/Structs/URLEncoding/ArrayEncoding.html @@ -487,7 +487,7 @@

    Declaration

    diff --git a/docs/Structs/URLEncoding/BoolEncoding.html b/docs/Structs/URLEncoding/BoolEncoding.html index bb1ebee6b..371c989e3 100644 --- a/docs/Structs/URLEncoding/BoolEncoding.html +++ b/docs/Structs/URLEncoding/BoolEncoding.html @@ -486,7 +486,7 @@

    Declaration

    diff --git a/docs/Structs/URLEncoding/Destination.html b/docs/Structs/URLEncoding/Destination.html index 38756ee98..4d491a43f 100644 --- a/docs/Structs/URLEncoding/Destination.html +++ b/docs/Structs/URLEncoding/Destination.html @@ -516,7 +516,7 @@

    Declaration

    diff --git a/docs/Typealiases.html b/docs/Typealiases.html index 580222681..ec7f69973 100644 --- a/docs/Typealiases.html +++ b/docs/Typealiases.html @@ -537,7 +537,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes.html index 94749fa1f..9d80a8791 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes.html @@ -1454,7 +1454,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Adapter.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Adapter.html index bd5b12383..baaf26cd3 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Adapter.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Adapter.html @@ -480,7 +480,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/AlamofireNotifications.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/AlamofireNotifications.html index e668c1676..3cb88e571 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/AlamofireNotifications.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/AlamofireNotifications.html @@ -635,7 +635,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ClosureEventMonitor.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ClosureEventMonitor.html index 8cc691aca..b72f2b439 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ClosureEventMonitor.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ClosureEventMonitor.html @@ -2540,7 +2540,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeEventMonitor.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeEventMonitor.html index 87b633b04..d974c8b6d 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeEventMonitor.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeEventMonitor.html @@ -1522,7 +1522,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeTrustEvaluator.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeTrustEvaluator.html index 6b78c2cc2..0a75e06f3 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeTrustEvaluator.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/CompositeTrustEvaluator.html @@ -500,7 +500,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ConnectionLostRetryPolicy.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ConnectionLostRetryPolicy.html index 3a9414035..8a69bcc69 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ConnectionLostRetryPolicy.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ConnectionLostRetryPolicy.html @@ -519,7 +519,7 @@

    Parameters

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataRequest.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataRequest.html index a66452414..2988b23ad 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataRequest.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataRequest.html @@ -1203,7 +1203,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataResponseSerializer.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataResponseSerializer.html index e0ffc2cc9..3fdfa1f9d 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataResponseSerializer.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DataResponseSerializer.html @@ -569,7 +569,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DecodableResponseSerializer.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DecodableResponseSerializer.html index fbd3b29e8..30575ce0c 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DecodableResponseSerializer.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DecodableResponseSerializer.html @@ -610,7 +610,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DefaultTrustEvaluator.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DefaultTrustEvaluator.html index b47e3e44f..d8dc9cee4 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DefaultTrustEvaluator.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DefaultTrustEvaluator.html @@ -501,7 +501,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DisabledEvaluator.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DisabledEvaluator.html index f4f5bdb1e..31def5a9a 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DisabledEvaluator.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DisabledEvaluator.html @@ -482,7 +482,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest.html index c15cbee83..84ce511c0 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest.html @@ -1399,7 +1399,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Downloadable.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Downloadable.html index 3c0edd153..5659bcf31 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Downloadable.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Downloadable.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Options.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Options.html index 111010bfe..d649f846c 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Options.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/DownloadRequest/Options.html @@ -559,7 +559,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Interceptor.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Interceptor.html index 8d6307430..8b865909f 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Interceptor.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Interceptor.html @@ -618,7 +618,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONParameterEncoder.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONParameterEncoder.html index 087bf2c8e..b1c98d694 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONParameterEncoder.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONParameterEncoder.html @@ -611,7 +611,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONResponseSerializer.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONResponseSerializer.html index 6c58f29f1..e1cb68709 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONResponseSerializer.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/JSONResponseSerializer.html @@ -609,7 +609,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/MultipartFormData.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/MultipartFormData.html index 5eeb53d6f..560b65dc4 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/MultipartFormData.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/MultipartFormData.html @@ -1152,7 +1152,7 @@

    Parameters

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager.html index 9247e3c48..16cbcac66 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager.html @@ -946,7 +946,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/ConnectionType.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/ConnectionType.html index 5b999850b..7a78cd4b7 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/ConnectionType.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/ConnectionType.html @@ -486,7 +486,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html index 5d8956fd6..6219a7009 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html @@ -514,7 +514,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PinnedCertificatesTrustEvaluator.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PinnedCertificatesTrustEvaluator.html index ccfab1b00..169102a08 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PinnedCertificatesTrustEvaluator.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PinnedCertificatesTrustEvaluator.html @@ -548,7 +548,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PublicKeysTrustEvaluator.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PublicKeysTrustEvaluator.html index 1fd7a2a2f..ca9deae7a 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PublicKeysTrustEvaluator.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/PublicKeysTrustEvaluator.html @@ -539,7 +539,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request.html index f554c8a6d..fe0acbb41 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request.html @@ -445,6 +445,8 @@

    Request

  • cancelled: Set when cancel() is called. Any tasks created for the Request will have cancel() called on them. Unlike resumed or suspended, once in the cancelled state, the Request can no longer transition to any other state.
  • +
  • finished: Set when all response serialization completion closures have been cleared on the Request and + queued on their respective queues.
  • See more @@ -666,7 +668,7 @@

    Updated State

    Declaration

    Swift

    -
    public fileprivate(set) var state: State { get set }
    +
    public var state: State { get }
    @@ -676,9 +678,9 @@

    Declaration

  • - - - isCancelled + + + isInitialized
    @@ -686,14 +688,14 @@

    Declaration

    -

    Returns whether state is .cancelled.

    +

    Returns whether state is .initialized.

    Declaration

    Swift

    -
    public var isCancelled: Bool { get }
    +
    public var isInitialized: Bool { get }
    @@ -757,9 +759,9 @@

    Declaration

  • - - - isInitialized + + + isCancelled
    @@ -767,14 +769,41 @@

    Declaration

    -

    Returns whether state is .initialized.

    +

    Returns whether state is .cancelled.

    Declaration

    Swift

    -
    public var isInitialized: Bool { get }
    +
    public var isCancelled: Bool { get }
    + +
    +
    +
    +
    +
  • +
  • +
    + + + + isFinished + +
    +
    +
    +
    +
    +
    +

    Returns whether state is .finished.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    public var isFinished: Bool { get }
    @@ -2441,7 +2470,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request/State.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request/State.html index dfa846c87..d0c596130 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request/State.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Request/State.html @@ -422,6 +422,8 @@

    State

  • cancelled: Set when cancel() is called. Any tasks created for the Request will have cancel() called on them. Unlike resumed or suspended, once in the cancelled state, the Request can no longer transition to any other state.
  • +
  • finished: Set when all response serialization completion closures have been cleared on the Request and + queued on their respective queues.
  • @@ -539,6 +541,33 @@

    Declaration

  • +
  • +
    + + + + finished + +
    +
    +
    +
    +
    +
    +

    Undocumented

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case finished
    + +
    +
    +
    +
    +
  • @@ -547,7 +576,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Retrier.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Retrier.html index af9730377..db7fd78f5 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Retrier.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Retrier.html @@ -484,7 +484,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RetryPolicy.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RetryPolicy.html index 1ee28d47e..66c625437 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RetryPolicy.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RetryPolicy.html @@ -899,7 +899,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator.html index 4b90fbc68..5564e862a 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator.html @@ -565,7 +565,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator/Options.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator/Options.html index d880e5e75..795d85528 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator/Options.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/RevocationTrustEvaluator/Options.html @@ -665,7 +665,7 @@

    Parameters

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ServerTrustManager.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ServerTrustManager.html index e679329ec..ee7d4001c 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ServerTrustManager.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/ServerTrustManager.html @@ -604,7 +604,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Session.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Session.html index 233534d73..1348e028d 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Session.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/Session.html @@ -1454,93 +1454,23 @@

    Declaration

    + + +
    +
    + + + +

    SessionStateProvider

    +
    +
    +
    - - -
    -
    - - - -

    SessionStateProvider

    -
    -
    -
    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/SessionDelegate.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/SessionDelegate.html index a4ef3da08..d75b11708 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/SessionDelegate.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/SessionDelegate.html @@ -844,7 +844,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/StringResponseSerializer.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/StringResponseSerializer.html index d31b2bb3c..2fe19eabd 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/StringResponseSerializer.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/StringResponseSerializer.html @@ -610,7 +610,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder.html index 01a7ed891..1f894fe03 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder.html @@ -856,7 +856,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/ArrayEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/ArrayEncoding.html index 5bdc8e3e6..166cd4ab5 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/ArrayEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/ArrayEncoding.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/BoolEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/BoolEncoding.html index a0f0f3265..58e12ec1e 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/BoolEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/BoolEncoding.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/Error.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/Error.html index 3f998db1f..b91f28a4e 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/Error.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/Error.html @@ -454,7 +454,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/SpaceEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/SpaceEncoding.html index 51987c442..c847711a5 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/SpaceEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormEncoder/SpaceEncoding.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder.html index 9a093c6fa..b53cb57fc 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder.html @@ -633,7 +633,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder/Destination.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder/Destination.html index 390cb6626..1a325a2f8 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder/Destination.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/URLEncodedFormParameterEncoder/Destination.html @@ -509,7 +509,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest.html index 49ef5b989..52c6736e5 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest.html @@ -557,7 +557,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest/Uploadable.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest/Uploadable.html index baa513902..cc489785b 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest/Uploadable.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Classes/UploadRequest/Uploadable.html @@ -546,7 +546,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums.html index 5cb253d3a..bfb4236bc 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums.html @@ -561,7 +561,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AF.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AF.html index 808fa73eb..42f0ea262 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AF.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AF.html @@ -2035,7 +2035,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError.html index ef216620b..d844dc483 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError.html @@ -1555,7 +1555,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/MultipartEncodingFailureReason.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/MultipartEncodingFailureReason.html index 0451ac8a4..e403ef6a0 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/MultipartEncodingFailureReason.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/MultipartEncodingFailureReason.html @@ -804,7 +804,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason.html index 10b09249c..16c503acc 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason.html @@ -509,7 +509,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html index 80f9150d1..814472bcc 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncodingFailureReason.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncodingFailureReason.html index e6b621c8a..c4e4e6883 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncodingFailureReason.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ParameterEncodingFailureReason.html @@ -487,7 +487,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseSerializationFailureReason.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseSerializationFailureReason.html index 2b5e9986d..2e9b4dfbf 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseSerializationFailureReason.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseSerializationFailureReason.html @@ -608,6 +608,33 @@

    Declaration

    +
  • +
    + + + + responseSerializerAddedAfterRequestFinished + +
    +
    +
    +
    +
    +
    +

    A response serializer was added to the request after the request was already finished.

    + +
    +
    +

    Declaration

    +
    +

    Swift

    +
    case responseSerializerAddedAfterRequestFinished
    + +
    +
    +
    +
    +
  • @@ -616,7 +643,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseValidationFailureReason.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseValidationFailureReason.html index a66eae9ea..b4f7d6f26 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseValidationFailureReason.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ResponseValidationFailureReason.html @@ -572,7 +572,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason.html index d39f9d91f..575589e63 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason.html @@ -752,7 +752,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason/Output.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason/Output.html index ffdde1084..391539b51 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason/Output.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/AFError/ServerTrustFailureReason/Output.html @@ -535,7 +535,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/HTTPMethod.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/HTTPMethod.html index b897716f9..4331b5b96 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/HTTPMethod.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/HTTPMethod.html @@ -672,7 +672,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/RetryResult.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/RetryResult.html index 57ebbf76e..f049ebc7d 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/RetryResult.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Enums/RetryResult.html @@ -535,7 +535,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions.html index 461b32f68..513433470 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions.html @@ -725,7 +725,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Array.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Array.html index 3844b9445..933da9712 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Array.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Array.html @@ -488,7 +488,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/CharacterSet.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/CharacterSet.html index 8f96cd34e..dd838ef24 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/CharacterSet.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/CharacterSet.html @@ -464,7 +464,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Error.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Error.html index 6601d6411..2bb3aeda0 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Error.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Error.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/HTTPURLResponse.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/HTTPURLResponse.html index 3218ab19d..64eefbc9b 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/HTTPURLResponse.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/HTTPURLResponse.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Notification.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Notification.html index db2450836..8ec4da8e5 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Notification.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/Notification.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/String.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/String.html index 9b7a85431..c85f3782e 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/String.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/String.html @@ -462,7 +462,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URL.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URL.html index bc9dfe490..f9ff4c8b7 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URL.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URL.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLComponents.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLComponents.html index b32e5ce05..13d960dc9 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLComponents.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLComponents.html @@ -462,7 +462,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLRequest.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLRequest.html index 38b3f978b..a8efafd7a 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLRequest.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLRequest.html @@ -594,7 +594,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLSessionConfiguration.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLSessionConfiguration.html index 33756ce23..7699624c5 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLSessionConfiguration.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Extensions/URLSessionConfiguration.html @@ -453,7 +453,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Functions.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Functions.html index 74ac61aa0..9debbb7c1 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Functions.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Functions.html @@ -486,7 +486,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols.html index 0c998fae2..70bf255a1 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols.html @@ -1082,7 +1082,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/AlamofireExtended.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/AlamofireExtended.html index 91cf28079..99b243783 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/AlamofireExtended.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/AlamofireExtended.html @@ -517,7 +517,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/CachedResponseHandler.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/CachedResponseHandler.html index a0f66c5a0..959b21662 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/CachedResponseHandler.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/CachedResponseHandler.html @@ -505,7 +505,7 @@

    Parameters

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataDecoder.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataDecoder.html index a8ca06e5b..1b2d6f13f 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataDecoder.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataDecoder.html @@ -494,7 +494,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataResponseSerializerProtocol.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataResponseSerializerProtocol.html index 127bc6a24..fc76c4958 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataResponseSerializerProtocol.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DataResponseSerializerProtocol.html @@ -481,7 +481,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DownloadResponseSerializerProtocol.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DownloadResponseSerializerProtocol.html index 50fa21d8d..01bcfa179 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DownloadResponseSerializerProtocol.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/DownloadResponseSerializerProtocol.html @@ -488,7 +488,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EmptyResponse.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EmptyResponse.html index c0f73085b..0dd12d206 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EmptyResponse.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EmptyResponse.html @@ -454,7 +454,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EventMonitor.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EventMonitor.html index 32c592cca..55e736b1e 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EventMonitor.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/EventMonitor.html @@ -1898,7 +1898,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoder.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoder.html index 1e522202f..3da213b0d 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoder.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoder.html @@ -495,7 +495,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoding.html index 2b53abd0e..d05af4c22 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ParameterEncoding.html @@ -494,7 +494,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RedirectHandler.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RedirectHandler.html index 8eea14785..d8153431a 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RedirectHandler.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RedirectHandler.html @@ -517,7 +517,7 @@

    Parameters

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestAdapter.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestAdapter.html index c787681ed..8feb9edd4 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestAdapter.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestAdapter.html @@ -497,7 +497,7 @@

    Parameters

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestDelegate.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestDelegate.html index d14b55402..d3464fb38 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestDelegate.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestDelegate.html @@ -500,114 +500,6 @@

    Declaration

    -
  • -
    - - - - cancelRequest(_:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func cancelRequest(_ request: Request)
    - -
    -
    -
    -
    -
  • -
  • -
    - - - - cancelDownloadRequest(_:byProducingResumeData:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func cancelDownloadRequest(_ request: DownloadRequest, byProducingResumeData: @escaping (Data?) -> Void)
    - -
    -
    -
    -
    -
  • -
  • -
    - - - - suspendRequest(_:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func suspendRequest(_ request: Request)
    - -
    -
    -
    -
    -
  • -
  • -
    - - - - resumeRequest(_:) - -
    -
    -
    -
    -
    -
    -

    Undocumented

    - -
    -
    -

    Declaration

    -
    -

    Swift

    -
    func resumeRequest(_ request: Request)
    - -
    -
    -
    -
    -
  • @@ -616,7 +508,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestInterceptor.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestInterceptor.html index e7489a1c8..8815f54d0 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestInterceptor.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestInterceptor.html @@ -489,7 +489,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestRetrier.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestRetrier.html index c13e37205..be6441c96 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestRetrier.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/RequestRetrier.html @@ -514,7 +514,7 @@

    Parameters

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ResponseSerializer.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ResponseSerializer.html index a50fa6448..3c918bdfa 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ResponseSerializer.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ResponseSerializer.html @@ -658,7 +658,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ServerTrustEvaluating.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ServerTrustEvaluating.html index 8b403e1ce..03680eb5c 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ServerTrustEvaluating.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/ServerTrustEvaluating.html @@ -489,7 +489,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLConvertible.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLConvertible.html index 96f90306f..804bed07e 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLConvertible.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLConvertible.html @@ -464,7 +464,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLRequestConvertible.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLRequestConvertible.html index 0965d6067..1c4cb7e8e 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLRequestConvertible.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/URLRequestConvertible.html @@ -497,7 +497,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/UploadableConvertible.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/UploadableConvertible.html index 0231cfed1..861a4b50d 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/UploadableConvertible.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Protocols/UploadableConvertible.html @@ -454,7 +454,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs.html index 7d96f269f..376cf95a7 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs.html @@ -766,7 +766,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/AlamofireExtension.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/AlamofireExtension.html index eba0f6c52..f6dde80ba 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/AlamofireExtension.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/AlamofireExtension.html @@ -1308,7 +1308,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DataResponse.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DataResponse.html index c1ec6d7f0..98986c003 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DataResponse.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DataResponse.html @@ -1047,7 +1047,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DownloadResponse.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DownloadResponse.html index 9242bed38..723ae84ae 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DownloadResponse.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/DownloadResponse.html @@ -1100,7 +1100,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Empty.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Empty.html index 351423390..e68b0cdad 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Empty.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Empty.html @@ -492,7 +492,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeader.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeader.html index a8d60b7a6..c10076e18 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeader.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeader.html @@ -1164,7 +1164,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeaders.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeaders.html index 9a15df014..a1f135dbf 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeaders.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/HTTPHeaders.html @@ -1214,7 +1214,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/JSONEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/JSONEncoding.html index e3ae43c5a..100e4e855 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/JSONEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/JSONEncoding.html @@ -722,7 +722,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector.html index 5e98c17d5..386b0f85b 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector.html @@ -621,7 +621,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector/Behavior.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector/Behavior.html index 34868f96e..b7fab8c38 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector/Behavior.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/Redirector/Behavior.html @@ -514,7 +514,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher.html index f3ab7d01a..efaaa6b1b 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher.html @@ -621,7 +621,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher/Behavior.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher/Behavior.html index e4da9b01c..c0eb27340 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher/Behavior.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/ResponseCacher/Behavior.html @@ -514,7 +514,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding.html index c0066e064..50dde08d2 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding.html @@ -998,7 +998,7 @@

    Return Value

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/ArrayEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/ArrayEncoding.html index 1fbfaaad5..6152f348a 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/ArrayEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/ArrayEncoding.html @@ -487,7 +487,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/BoolEncoding.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/BoolEncoding.html index bb1ebee6b..371c989e3 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/BoolEncoding.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/BoolEncoding.html @@ -486,7 +486,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/Destination.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/Destination.html index 38756ee98..4d491a43f 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/Destination.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Structs/URLEncoding/Destination.html @@ -516,7 +516,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Typealiases.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Typealiases.html index 580222681..ec7f69973 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Typealiases.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/Typealiases.html @@ -537,7 +537,7 @@

    Declaration

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/badge.svg b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/badge.svg index b4851679c..f6985a8a7 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/badge.svg +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/badge.svg @@ -19,10 +19,10 @@ documentation - 75% + 77% - 75% + 77% diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/index.html b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/index.html index 7f3b4a9f2..c5f5a0e23 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/index.html +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/index.html @@ -550,7 +550,7 @@

    Embedded Framework

    It does not matter which Products folder you choose from, but it does matter whether you choose the top or bottom Alamofire.framework.

    -
  • Select the top Alamofire.framework for iOS and the bottom one for OS X.

    +
  • Select the top Alamofire.framework for iOS and the bottom one for macOS.

    You can verify which one you selected by inspecting the build log for your project. The build target for Alamofire will be listed as either Alamofire iOS, Alamofire macOS, Alamofire tvOS or Alamofire watchOS.

    @@ -627,7 +627,7 @@

    License

    diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/search.json b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/search.json index a31a1f7b0..24ceaa011 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/search.json +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/search.json @@ -1 +1 @@ -{"Typealiases.html#/s:9Alamofire8AFResulta":{"name":"AFResult","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire10Parametersa":{"name":"Parameters","abstract":"

    A dictionary of parameters to apply to a URLRequest.

    "},"Typealiases.html#/s:9Alamofire12AdaptHandlera":{"name":"AdaptHandler","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire12RetryHandlera":{"name":"RetryHandler","abstract":"

    Undocumented

    "},"Structs/Empty.html#/s:9Alamofire5EmptyV5valueACvpZ":{"name":"value","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/Empty.html#/s:9Alamofire5EmptyV10emptyValueACyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    The final destination URL of the data returned from the server after it is moved.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    The resume data generated if the request was cancelled.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request8response7fileURL10resumeData7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAL0G0VSgAL0I0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:fileURL:resumeData:metrics:serializationDuration:result:)","abstract":"

    Creates a DownloadResponse instance with the specified parameters derived from response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    The data returned by the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request8response4data7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:data:metrics:serializationDuration:result:)","abstract":"

    Creates a DataResponse instance with the specified parameters derviced from the response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the specified closure when the result of this DataResponse is a success, passing the unwrapped","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DataResponse is a success, passing the unwrapped result","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6followyA2EmF":{"name":"follow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO11doNotFollowyA2EmF":{"name":"doNotFollow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6modifyyAE10Foundation10URLRequestVSgSo16NSURLSessionTaskC_AISo17NSHTTPURLResponseCtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the Redirector type.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV6followACvpZ":{"name":"follow","abstract":"

    Returns a Redirector with a follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV11doNotFollowACvpZ":{"name":"doNotFollow","abstract":"

    Returns a Redirector with a do not follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the Redirector.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a Redirector instance from the Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","parent_name":"Redirector"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a JSONEncoding instance with default writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns a JSONEncoding instance with .prettyPrinted writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsSo20NSJSONWritingOptionsVvp":{"name":"options","abstract":"

    The options for writing the parameters as JSON data.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsACSo20NSJSONWritingOptionsV_tcfc":{"name":"init(options:)","abstract":"

    Creates a JSONEncoding instance using the specified options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_14withJSONObject10Foundation10URLRequestVAA0G11Convertible_p_ypSgtKF":{"name":"encode(_:withJSONObject:)","abstract":"

    Creates a URL request by encoding the JSON object and setting the resulting data on the HTTP body.

    ","parent_name":"JSONEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html":{"name":"Destination","abstract":"

    Defines whether the url-encoded query string is applied to the existing query string or HTTP body of the","parent_name":"URLEncoding"},"Structs/URLEncoding/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a default URLEncoding instance with a .methodDependent destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11queryStringACvpZ":{"name":"queryString","abstract":"

    Returns a URLEncoding instance with a .queryString destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV8httpBodyACvpZ":{"name":"httpBody","abstract":"

    Returns a URLEncoding instance with an .httpBody destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The destination defining where the encoded query string is to be applied to the URL request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV13arrayEncodingAC05ArrayD0Ovp":{"name":"arrayEncoding","abstract":"

    The encoding to use for Array parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV12boolEncodingAC04BoolD0Ovp":{"name":"boolEncoding","abstract":"

    The encoding to use for Bool parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destination13arrayEncoding04boolE0A2C11DestinationO_AC05ArrayE0OAC04BoolE0Otcfc":{"name":"init(destination:arrayEncoding:boolEncoding:)","abstract":"

    Creates a URLEncoding instance using the specified destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV15queryComponents7fromKey5valueSaySS_SStGSS_yptF":{"name":"queryComponents(fromKey:value:)","abstract":"

    Creates percent-escaped, URL encoded query string components from the given key-value pair using recursion.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6escapeyS2SF":{"name":"escape(_:)","abstract":"

    Returns a percent-escaped string following RFC 3986 for a query string key or value.

    ","parent_name":"URLEncoding"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4nameSSvp":{"name":"name","abstract":"

    Name of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV5valueSSvp":{"name":"value","abstract":"

    Value of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4name5valueACSS_SStcfc":{"name":"init(name:value:)","abstract":"

    Creates an instance from the given name and value.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13acceptCharsetyACSSFZ":{"name":"acceptCharset(_:)","abstract":"

    Returns an Accept-Charset header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptLanguageyACSSFZ":{"name":"acceptLanguage(_:)","abstract":"

    Returns an Accept-Language header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptEncodingyACSSFZ":{"name":"acceptEncoding(_:)","abstract":"

    Returns an Accept-Encoding header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization8username8passwordACSS_SStFZ":{"name":"authorization(username:password:)","abstract":"

    Returns a Basic Authorization header using the username and password provided.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization11bearerTokenACSS_tFZ":{"name":"authorization(bearerToken:)","abstract":"

    Returns a Bearer Authorization header using the bearerToken provided

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorizationyACSSFZ":{"name":"authorization(_:)","abstract":"

    Returns an Authorization header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV18contentDispositionyACSSFZ":{"name":"contentDisposition(_:)","abstract":"

    Returns a Content-Disposition header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV11contentTypeyACSSFZ":{"name":"contentType(_:)","abstract":"

    Returns a Content-Type header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV9userAgentyACSSFZ":{"name":"userAgent(_:)","abstract":"

    Returns a User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptEncodingACvpZ":{"name":"defaultAcceptEncoding","abstract":"

    Returns Alamofire’s default Accept-Encoding header, appropriate for the encodings supporte by particular OS","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptLanguageACvpZ":{"name":"defaultAcceptLanguage","abstract":"

    Returns Alamofire’s default Accept-Language header, generated by querying Locale for the user’s","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV16defaultUserAgentACvpZ":{"name":"defaultUserAgent","abstract":"

    Returns Alamofire’s default User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVACycfc":{"name":"init()","abstract":"

    Create an empty instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSayAA10HTTPHeaderVGcfc":{"name":"init(_:)","abstract":"

    Create an instance from an array of HTTPHeaders. Duplicate case-insensitive names are collapsed into the last","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSDyS2SGcfc":{"name":"init(_:)","abstract":"

    Create an instance from a [String: String]. Duplicate case-insensitive names are collapsed into the last name","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3add4name5valueySS_SStF":{"name":"add(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3addyyAA10HTTPHeaderVF":{"name":"add(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6update4name5valueySS_SStF":{"name":"update(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6updateyyAA10HTTPHeaderVF":{"name":"update(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6remove4nameySS_tF":{"name":"remove(name:)","abstract":"

    Case-insensitively removes an HTTPHeader, if it exists, from the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV4sortyyF":{"name":"sort()","abstract":"

    Sort the current instance by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6sortedACyF":{"name":"sorted()","abstract":"

    Returns an instance sorted by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV5value3forSSSgSS_tF":{"name":"value(for:)","abstract":"

    Case-insensitively find a header’s value by name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVySSSgSScip":{"name":"subscript(_:)","abstract":"

    Case-insensitively access the header with the given name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV10dictionarySDyS2SGvp":{"name":"dictionary","abstract":"

    The dictionary representation of all headers.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s30ExpressibleByDictionaryLiteralP010dictionaryD0x3KeyQz_5ValueQztd_tcfc":{"name":"init(dictionaryLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s25ExpressibleByArrayLiteralP05arrayD0x0cD7ElementQzd_tcfc":{"name":"init(arrayLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:ST12makeIterator0B0QzyF":{"name":"makeIterator()","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl10startIndex0B0Qzvp":{"name":"startIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl8endIndex0B0Qzvp":{"name":"endIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sly7ElementQz5IndexQzcip":{"name":"subscript(_:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl5index5after5IndexQzAD_tF":{"name":"index(after:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV7defaultACvpZ":{"name":"default","abstract":"

    The default set of HTTPHeaders used by Alamofire. Includes Accept-Encoding, Accept-Language, and","parent_name":"HTTPHeaders"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO5cacheyA2EmF":{"name":"cache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO10doNotCacheyA2EmF":{"name":"doNotCache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO6modifyyAESo19NSCachedURLResponseCSgSo20NSURLSessionDataTaskC_AHtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the ResponseCacher type.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV5cacheACvpZ":{"name":"cache","abstract":"

    Returns a ResponseCacher with a follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV10doNotCacheACvpZ":{"name":"doNotCache","abstract":"

    Returns a ResponseCacher with a do not follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the ResponseCacher.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a ResponseCacher instance from the Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","parent_name":"ResponseCacher"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE12certificatesSaySo17SecCertificateRefaGvp":{"name":"certificates","abstract":"

    Returns all valid cer, crt, and der certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE10publicKeysSaySo9SecKeyRefaGvp":{"name":"publicKeys","abstract":"

    Returns all public keys for the valid certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE5paths19forResourcesOfTypesSaySSGAH_tF":{"name":"paths(forResourcesOfTypes:)","abstract":"

    Returns all pathnames for the resources identified by the provided file extensions.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate6policy13errorProducerySo0c6PolicyE0a_s5Error_ps5Int32V_So0cD10ResultTypeVtXEtKF":{"name":"validate(policy:errorProducer:)","abstract":"

    Attempts to validate self using the policy provided and transforming any error produced using the closure passed.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE5apply6policyAESo0c6PolicyE0a_tKF":{"name":"apply(policy:)","abstract":"

    Applies a SecPolicy to self, throwing if it fails.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate13errorProducerys5Error_ps5Int32V_So0cD10ResultTypeVtXE_tKF":{"name":"validate(errorProducer:)","abstract":"

    Validate self, passing any failure values through errorProducer.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE21setAnchorCertificatesyySaySo0c11CertificateE0aGKF":{"name":"setAnchorCertificates(_:)","abstract":"

    Sets a custom certificate chain on self, allowing full validation of a self-signed certificate and its chain.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    The public keys contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE12certificatesSaySo0c11CertificateE0aGvp":{"name":"certificates","abstract":"

    The SecCertificates contained i self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE15certificateDataSay10Foundation0G0VGvp":{"name":"certificateData","abstract":"

    The Data values for all certificates contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE24performDefaultValidation7forHostySS_tKF":{"name":"performDefaultValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.default. This evaluation does not validate the hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE17performValidation7forHostySS_tKF":{"name":"performValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.hostname(host), which performs the default validation as well as","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE7defaultAEvpZ":{"name":"default","abstract":"

    Creates a SecPolicy instance which will validate server certificates but not require a host name match.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE8hostnameyAESSFZ":{"name":"hostname(_:)","abstract":"

    Creates a SecPolicy instance which will validate server certificates and much match the provided hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE10revocation7optionsAeA24RevocationTrustEvaluatorC7OptionsV_tKFZ":{"name":"revocation(options:)","abstract":"

    Creates a SecPolicy which checks the revocation of certificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE4dataSay10Foundation4DataVGvp":{"name":"data","abstract":"

    All Data values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    All public SecKey values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo17SecCertificateRefaRszlE9publicKeySo0cgE0aSgvp":{"name":"publicKey","abstract":"

    The public key for self, if it can be extracted.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAAs5Int32VRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is errSecSuccess.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo18SecTrustResultTypeVRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is.unspecifiedor.proceed`.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo25NSURLSessionConfigurationCRbzlE7defaultAEvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html":{"name":"AlamofireExtension","abstract":"

    Type that acts as a generic extension point for all AlamofireExtended types.

    "},"Structs/ResponseCacher.html":{"name":"ResponseCacher","abstract":"

    ResponseCacher is a convenience CachedResponseHandler making it easy to cache, not cache, or modify a cached"},"Structs/HTTPHeaders.html":{"name":"HTTPHeaders","abstract":"

    An order-preserving and case-insensitive representation of HTTP headers.

    "},"Structs/HTTPHeader.html":{"name":"HTTPHeader","abstract":"

    A representation of a single HTTP header’s name / value pair.

    "},"Structs/URLEncoding.html":{"name":"URLEncoding","abstract":"

    Creates a url-encoded query string to be set as or appended to any existing URL query string or set as the HTTP"},"Structs/JSONEncoding.html":{"name":"JSONEncoding","abstract":"

    Uses JSONSerialization to create a JSON representation of the parameters object, which is set as the body of the"},"Structs/Redirector.html":{"name":"Redirector","abstract":"

    Redirector is a convenience RedirectHandler making it easy to follow, not follow, or modify a redirect.

    "},"Structs/DataResponse.html":{"name":"DataResponse","abstract":"

    Used to store all data associated with a serialized response of a data or upload request.

    "},"Structs/DownloadResponse.html":{"name":"DownloadResponse","abstract":"

    Used to store all data associated with a serialized response of a download request.

    "},"Structs/Empty.html":{"name":"Empty","abstract":"

    A type representing an empty response. Use Empty.value to get the instance.

    "},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertibleP02asB010Foundation0B0VyKF":{"name":"asURLRequest()","abstract":"

    Returns a URLRequest or throws if an Error was encoutered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertiblePAAE10urlRequest10Foundation0B0VSgvp":{"name":"urlRequest","abstract":"

    The URLRequest returned by discarding any Error encountered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLConvertible.html#/s:9Alamofire14URLConvertibleP5asURL10Foundation0D0VyKF":{"name":"asURL()","abstract":"

    Returns a URL from the conforming instance or throws.

    ","parent_name":"URLConvertible"},"Protocols/ServerTrustEvaluating.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"ServerTrustEvaluating"},"Protocols/DataDecoder.html#/s:9Alamofire11DataDecoderP6decode_4fromqd__qd__m_10Foundation0B0VtKSeRd__lF":{"name":"decode(_:from:)","abstract":"

    Decode Data into the provided type.

    ","parent_name":"DataDecoder"},"Protocols/EmptyResponse.html#/s:9Alamofire13EmptyResponseP10emptyValuexyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"EmptyResponse"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP05emptyB5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE26defaultEmptyRequestMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultEmptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE012defaultEmptyB5CodesShySiGvpZ":{"name":"defaultEmptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE018requestAllowsEmptyB4DataySbSg10Foundation10URLRequestVSgF":{"name":"requestAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE019responseAllowsEmptyB4DataySbSgSo17NSHTTPURLResponseCSgF":{"name":"responseAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE05emptyB7Allowed10forRequest8responseSb10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgtF":{"name":"emptyResponseAllowed(forRequest:response:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this DownloadResponseSerializerType.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP09serializeB07request8response7fileURL5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0J0VSgs5Error_pSgtKF":{"name":"serializeDownload(request:response:fileURL:error:)","abstract":"

    The function used to serialize the downloaded data in response handlers.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this serializer.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","abstract":"

    The function used to serialize the response data in response handlers.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestRetrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","abstract":"

    Determines whether the Request should be retried by calling the completion closure.

    ","parent_name":"RequestRetrier"},"Protocols/RequestAdapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","abstract":"

    Inspects and adapts the specified URLRequest in some manner and calls the completion handler with the AFResult.

    ","parent_name":"RequestAdapter"},"Protocols/UploadableConvertible.html#/s:9Alamofire21UploadableConvertibleP06createB0AA13UploadRequestC0B0OyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"UploadableConvertible"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP20sessionConfigurationSo012NSURLSessionE0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP11retryResult3for5dueTo10completionyAA0B0C_s5Error_pyAA05RetryE0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP05retryB0_9withDelayyAA0B0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP06cancelB0yyAA0B0CF":{"name":"cancelRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP014cancelDownloadB0_21byProducingResumeDatayAA0eB0C_y10Foundation0I0VSgctF":{"name":"cancelDownloadRequest(_:byProducingResumeData:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP07suspendB0yyAA0B0CF":{"name":"suspendRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP06resumeB0yyAA0B0CF":{"name":"resumeRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RedirectHandler.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","abstract":"

    Determines how the HTTP redirect response should be redirected to the new request.

    ","parent_name":"RedirectHandler"},"Protocols/ParameterEncoding.html#/s:9Alamofire17ParameterEncodingP6encode_4with10Foundation10URLRequestVAA0G11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"ParameterEncoding"},"Protocols/ParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","abstract":"

    Encode the provided Encodable parameters into request.

    ","parent_name":"ParameterEncoder"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","abstract":"

    The DispatchQueue onto which Alamofire’s root CompositeEventMonitor will dispatch events. Defaults to .main.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Event called during URLSessionDelegate‘s urlSession(_:didBecomeInvalidWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didReceive:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:needNewBodyStream:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didFinishCollecting:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didCompleteWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:taskIsWaitingForConnectivity:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:didReceive:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:willCacheResponse:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didFinishDownloadingTo:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","abstract":"

    Event called when a URLRequest is first created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","abstract":"

    Event called when the attempt to create a URLRequest from a Request‘s original URLRequestConvertible value fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","abstract":"

    Event called when a RequestAdapter adapts the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","abstract":"

    Event called when a RequestAdapter fails to adapt the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","abstract":"

    Event called when a URLSessionTask subclass instance is created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","abstract":"

    Event called when a Request receives a URLSessionTaskMetrics value.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","abstract":"

    Event called when a Request fails due to an error created by Alamofire. e.g. When certificat pinning fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","abstract":"

    Event called when a Request‘s task completes, possibly with an error. A Request may recieve this event","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","abstract":"

    Event called when a Request is about to be retried.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","abstract":"

    Event called when a Request finishes and response serializers are being called.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","abstract":"

    Event called when a Request receives a resume call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is resumed.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","abstract":"

    Event called when a Request receives a suspend call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is suspended.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","abstract":"

    Event called when a Request receives a cancel call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is cancelled.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","abstract":"

    Event called when a DataRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest creates a DataResponse<Data?> value without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest calls a ResponseSerializer and creates a generic DataResponse<Value>.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","abstract":"

    Event called when an UploadRequest creates its Uploadable value, indicating the type of upload it represents.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","abstract":"

    Event called when an UploadRequest failes to create its Uploadable value due to an error.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","abstract":"

    Event called when an UploadRequest provides the InputStream from its Uploadable value. This only occurs if","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","abstract":"

    Event called when a DownloadRequest‘s URLSessionDownloadTask finishes and the temporary file has been moved.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","abstract":"

    Event called when a DownloadRequest‘s Destination closure is called and creates the destination URL the","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","abstract":"

    Event called when a DownloadRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest creates a DownloadResponse<URL?> without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest calls a DownloadResponseSerializer and creates a generic DownloadResponse<Value>

    ","parent_name":"EventMonitor"},"Protocols/CachedResponseHandler.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","abstract":"

    Determines whether the HTTP response should be stored in the cache.

    ","parent_name":"CachedResponseHandler"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP0B4TypeQa":{"name":"ExtendedType","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGmvpZ":{"name":"af","abstract":"

    Static Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGvp":{"name":"af","abstract":"

    Instance Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html":{"name":"AlamofireExtended","abstract":"

    Protocol describing the af extension points for Alamofire extended types.

    "},"Protocols/CachedResponseHandler.html":{"name":"CachedResponseHandler","abstract":"

    A type that handles whether the data task should store the HTTP response in the cache.

    "},"Protocols/EventMonitor.html":{"name":"EventMonitor","abstract":"

    Protocol outlining the lifetime events inside Alamofire. It includes both events received from the various"},"Protocols/ParameterEncoder.html":{"name":"ParameterEncoder","abstract":"

    A type that can encode any Encodable type into a URLRequest.

    "},"Protocols/ParameterEncoding.html":{"name":"ParameterEncoding","abstract":"

    A type used to define how a set of parameters are applied to a URLRequest.

    "},"Protocols/RedirectHandler.html":{"name":"RedirectHandler","abstract":"

    A type that handles how an HTTP redirect response from a remote server should be redirected to the new request.

    "},"Protocols/RequestDelegate.html":{"name":"RequestDelegate","abstract":"

    Protocol abstraction for Request‘s communication back to the SessionDelegate.

    "},"Protocols/UploadableConvertible.html":{"name":"UploadableConvertible","abstract":"

    Undocumented

    "},"Protocols.html#/s:9Alamofire17UploadConvertibleP":{"name":"UploadConvertible","abstract":"

    Undocumented

    "},"Protocols/RequestAdapter.html":{"name":"RequestAdapter","abstract":"

    A type that can inspect and optionally adapt a URLRequest in some manner if necessary.

    "},"Protocols/RequestRetrier.html":{"name":"RequestRetrier","abstract":"

    A type that determines whether a request should be retried after being executed by the specified session manager"},"Protocols/RequestInterceptor.html":{"name":"RequestInterceptor","abstract":"

    A type that intercepts requests to potentially adapt and retry them.

    "},"Protocols/DataResponseSerializerProtocol.html":{"name":"DataResponseSerializerProtocol","abstract":"

    The type to which all data response serializers must conform in order to serialize a response.

    "},"Protocols/DownloadResponseSerializerProtocol.html":{"name":"DownloadResponseSerializerProtocol","abstract":"

    The type to which all download response serializers must conform in order to serialize a response.

    "},"Protocols/ResponseSerializer.html":{"name":"ResponseSerializer","abstract":"

    A serializer that can handle both data and download responses.

    "},"Protocols/EmptyResponse.html":{"name":"EmptyResponse","abstract":"

    A protocol for a type representing an empty response. Use T.emptyValue to get an instance.

    "},"Protocols/DataDecoder.html":{"name":"DataDecoder","abstract":"

    Any type which can decode Data.

    "},"Protocols/ServerTrustEvaluating.html":{"name":"ServerTrustEvaluating","abstract":"

    A protocol describing the API used to evaluate server trusts.

    "},"Protocols/URLConvertible.html":{"name":"URLConvertible","abstract":"

    Types adopting the URLConvertible protocol can be used to construct URLs, which can then be used to construct"},"Protocols/URLRequestConvertible.html":{"name":"URLRequestConvertible","abstract":"

    Types adopting the URLRequestConvertible protocol can be used to safely construct URLRequests.

    "},"Functions.html#/s:9Alamofire2eeoiySbAA26NetworkReachabilityManagerC0cD6StatusO_AFtF":{"name":"==(_:_:)","abstract":"

    Returns whether the two network reachability status values are equal.

    "},"Extensions/URLComponents.html#/s:10Foundation13URLComponentsV9AlamofireE5asURLAA0E0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if the self‘s url is not nil, otherwise throws.

    ","parent_name":"URLComponents"},"Extensions/URL.html#/s:10Foundation3URLV9AlamofireE02asB0ACyKF":{"name":"asURL()","abstract":"

    Returns self.

    ","parent_name":"URL"},"Extensions/String.html#/s:SS9AlamofireE5asURL10Foundation0C0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if self can be used to initialize a URL instance, otherwise throws.

    ","parent_name":"String"},"Extensions/Array.html#/s:Sa9AlamofireAA21ServerTrustEvaluating_pRszlE8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"Array"},"Extensions/CharacterSet.html#/s:10Foundation12CharacterSetV9AlamofireE17afURLQueryAllowedACvpZ":{"name":"afURLQueryAllowed","abstract":"

    Creates a CharacterSet from RFC 3986 allowed characters.

    ","parent_name":"CharacterSet"},"Extensions/Notification.html#/s:10Foundation12NotificationV9AlamofireE7requestAD7RequestCSgvp":{"name":"request","abstract":"

    The Request contained by the instance’s userInfo, nil otherwise.

    ","parent_name":"Notification"},"Extensions/URLSessionConfiguration.html#/s:So25NSURLSessionConfigurationC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns httpAdditionalHeaders as HTTPHeaders.

    ","parent_name":"URLSessionConfiguration"},"Extensions/HTTPURLResponse.html#/s:So17NSHTTPURLResponseC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHeaderFields as HTTPHeaders.

    ","parent_name":"HTTPURLResponse"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE7headersAD11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHTTPHeaderFields as HTTPHeaders.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE02asB0ACyKF":{"name":"asURLRequest()","abstract":"

    Returns self.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE3url6method7headersAcD14URLConvertible_p_AD10HTTPMethodOAD11HTTPHeadersVSgtKcfc":{"name":"init(url:method:headers:)","abstract":"

    Creates an instance with the specified url, method, and headers.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE6methodAD10HTTPMethodOSgvp":{"name":"method","abstract":"

    Returns the httpMethod as Alamofire’s HTTPMethod type.

    ","parent_name":"URLRequest"},"Extensions/Error.html#/s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp":{"name":"asAFError","abstract":"

    Returns the instance cast as an AFError.

    ","parent_name":"Error"},"Extensions/Error.html":{"name":"Error"},"Extensions/URLRequest.html":{"name":"URLRequest"},"Extensions/HTTPURLResponse.html":{"name":"HTTPURLResponse"},"Extensions/URLSessionConfiguration.html":{"name":"URLSessionConfiguration"},"Extensions/Notification.html":{"name":"Notification"},"Extensions/CharacterSet.html":{"name":"CharacterSet"},"Extensions/Array.html":{"name":"Array"},"Extensions/String.html":{"name":"String"},"Extensions/URL.html":{"name":"URL"},"Extensions/URLComponents.html":{"name":"URLComponents"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO5retryyA2CmF":{"name":"retry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO14retryWithDelayyACSdcACmF":{"name":"retryWithDelay(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB0yA2CmF":{"name":"doNotRetry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB9WithErroryACs0G0_pcACmF":{"name":"doNotRetryWithError(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7connectyA2CmF":{"name":"connect","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO6deleteyA2CmF":{"name":"delete","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3getyA2CmF":{"name":"get","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4headyA2CmF":{"name":"head","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7optionsyA2CmF":{"name":"options","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5patchyA2CmF":{"name":"patch","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4postyA2CmF":{"name":"post","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3putyA2CmF":{"name":"put","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5traceyA2CmF":{"name":"trace","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtFZ":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlFZ":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtFZ":{"name":"request(_:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to execute the specified urlRequest.

    ","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlFZ":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to execute the specified urlRequest and download","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Creates a DownloadRequest using the SessionManager.default from the resumeData produced from a previous","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the fileURL specified","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using the SessionManager.default to upload the contents of the fileURL specificed","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV4hostSSvp":{"name":"host","abstract":"

    The host for which the evaluation was performed.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV5trustSo03SecD3Refavp":{"name":"trust","abstract":"

    The SecTrust value which was evaluated.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6statuss5Int32Vvp":{"name":"status","abstract":"

    The OSStatus of evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6resultSo03SecD10ResultTypeVvp":{"name":"result","abstract":"

    The result of the evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html":{"name":"Output","abstract":"

    The output of a server trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noRequiredEvaluatoryAESS_tcAEmF":{"name":"noRequiredEvaluator(host:)","abstract":"

    Undocumented

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noCertificatesFoundyA2EmF":{"name":"noCertificatesFound","abstract":"

    No certificates were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO17noPublicKeysFoundyA2EmF":{"name":"noPublicKeysFound","abstract":"

    No public keys were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23policyApplicationFailedyAESo03SecD3Refa_So0j6PolicyK0as5Int32VtcAEmF":{"name":"policyApplicationFailed(trust:policy:status:)","abstract":"

    During evaluation, application of the associated SecPolicy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO31settingAnchorCertificatesFailedyAEs5Int32V_SaySo17SecCertificateRefaGtcAEmF":{"name":"settingAnchorCertificatesFailed(status:certificates:)","abstract":"

    During evaluation, setting the associated anchor certificates failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO30revocationPolicyCreationFailedyA2EmF":{"name":"revocationPolicyCreationFailed","abstract":"

    During evaluation, creation of the revocation policy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23defaultEvaluationFailedyA2E6OutputV_tcAEmF":{"name":"defaultEvaluationFailed(output:)","abstract":"

    Default evaluation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO20hostValidationFailedyA2E6OutputV_tcAEmF":{"name":"hostValidationFailed(output:)","abstract":"

    Host validation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO21revocationCheckFailedyA2E6OutputV_AA010RevocationD9EvaluatorC7OptionsVtcAEmF":{"name":"revocationCheckFailed(output:options:)","abstract":"

    Revocation check failed with the associated Output and options.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO24certificatePinningFailedyAESS_So03SecD3RefaSaySo0j11CertificateK0aGAKtcAEmF":{"name":"certificatePinningFailed(host:trust:pinnedCertificates:serverCertificates:)","abstract":"

    Certificate pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO22publicKeyPinningFailedyAESS_So03SecD3RefaSaySo0khL0aGAKtcAEmF":{"name":"publicKeyPinningFailed(host:trust:pinnedKeys:serverKeys:)","abstract":"

    Public key pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO24inputDataNilOrZeroLengthyA2EmF":{"name":"inputDataNilOrZeroLength","abstract":"

    The server response contained no data or the data was zero length.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO12inputFileNilyA2EmF":{"name":"inputFileNil","abstract":"

    The file containing the server response did not exist.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO19inputFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"inputFileReadFailed(at:)","abstract":"

    The file containing the server response could not be read from the associated URL.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO06stringD6FailedyAESS10FoundationE8EncodingV_tcAEmF":{"name":"stringSerializationFailed(encoding:)","abstract":"

    String serialization failed using the provided String.Encoding.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonSerializationFailed(error:)","abstract":"

    JSON serialization failed with an underlying system error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO14decodingFailedyAEs5Error_p_tcAEmF":{"name":"decodingFailed(error:)","abstract":"

    A DataDecoder failed to decode the response due to the associated Error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO012invalidEmptyC0yAESS_tcAEmF":{"name":"invalidEmptyResponse(type:)","abstract":"

    Generic serialization failed for an empty response that wasn’t type Empty but instead the associated type.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO11dataFileNilyA2EmF":{"name":"dataFileNil","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18dataFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"dataFileReadFailed(at:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18missingContentTypeyAESaySSG_tcAEmF":{"name":"missingContentType(acceptableContentTypes:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO23unacceptableContentTypeyAESaySSG_SStcAEmF":{"name":"unacceptableContentType(acceptableContentTypes:responseContentType:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO22unacceptableStatusCodeyAESi_tcAEmF":{"name":"unacceptableStatusCode(code:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO18bodyPartURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFilenameInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFilenameInvalid(in:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO24bodyPartFileNotReachableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileNotReachable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartFileNotReachableWithErroryAE10Foundation3URLV_s0M0_ptcAEmF":{"name":"bodyPartFileNotReachableWithError(atURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFileIsDirectoryyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileIsDirectory(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO28bodyPartFileSizeNotAvailableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileSizeNotAvailable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO36bodyPartFileSizeQueryFailedWithErroryAE10Foundation3URLV_s0N0_ptcAEmF":{"name":"bodyPartFileSizeQueryFailedWithError(forURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartInputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartInputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO26outputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO29outputStreamFileAlreadyExistsyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamFileAlreadyExists(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO22outputStreamURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23outputStreamWriteFailedyAEs5Error_p_tcAEmF":{"name":"outputStreamWriteFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO21inputStreamReadFailedyAEs5Error_p_tcAEmF":{"name":"inputStreamReadFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO3urlyA2GmF":{"name":"url","abstract":"

    The URL was missing or unable to be extracted from the passed URLRequest or during encoding.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO10httpMethodyAGSS_tcAGmF":{"name":"httpMethod(rawValue:)","abstract":"

    The HTTPMethod could not be extracted from the passed URLRequest.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html":{"name":"RequiredComponent","abstract":"

    Possible missing components.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO24missingRequiredComponentyA2E0hI0OcAEmF":{"name":"missingRequiredComponent(_:)","abstract":"

    A RequiredComponent was missing during encoding.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO13encoderFailedyAEs5Error_p_tcAEmF":{"name":"encoderFailed(error:)","abstract":"

    The underlying encoder failed with the associated error.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO10missingURLyA2EmF":{"name":"missingURL","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonEncodingFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html":{"name":"ParameterEncodingFailureReason","abstract":"

    The underlying reason the parameter encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ParameterEncoderFailureReason.html":{"name":"ParameterEncoderFailureReason","abstract":"

    Underlying reason the parameter encoder error occured.

    ","parent_name":"AFError"},"Enums/AFError/MultipartEncodingFailureReason.html":{"name":"MultipartEncodingFailureReason","abstract":"

    The underlying reason the multipart encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseValidationFailureReason.html":{"name":"ResponseValidationFailureReason","abstract":"

    The underlying reason the response validation error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseSerializationFailureReason.html":{"name":"ResponseSerializationFailureReason","abstract":"

    The underlying reason the response serialization error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ServerTrustFailureReason.html":{"name":"ServerTrustFailureReason","abstract":"

    Underlying reason a server trust evaluation error occured.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20sessionDeinitializedyA2CmF":{"name":"sessionDeinitialized","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18sessionInvalidatedyACs5Error_pSg_tcACmF":{"name":"sessionInvalidated(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19explicitlyCancelledyA2CmF":{"name":"explicitlyCancelled","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO10invalidURLyAcA14URLConvertible_p_tcACmF":{"name":"invalidURL(url:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23parameterEncodingFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22parameterEncoderFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncoderFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23multipartEncodingFailedyA2C09MultipartD13FailureReasonO_tcACmF":{"name":"multipartEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23requestAdaptationFailedyACs5Error_p_tcACmF":{"name":"requestAdaptationFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24responseValidationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseValidationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27responseSerializationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseSerializationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27serverTrustEvaluationFailedyA2C06ServerD13FailureReasonO_tcACmF":{"name":"serverTrustEvaluationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18requestRetryFailedyACs5Error_p_sAE_ptcACmF":{"name":"requestRetryFailed(retryError:originalError:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27isSessionDeinitializedErrorSbvp":{"name":"isSessionDeinitializedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isSessionInvalidatedErrorSbvp":{"name":"isSessionInvalidatedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO26isExplicitlyCancelledErrorSbvp":{"name":"isExplicitlyCancelledError","abstract":"

    Returns whether the instance is .explicitlyCancelled.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO17isInvalidURLErrorSbvp":{"name":"isInvalidURLError","abstract":"

    Returns whether the instance is .invalidURL.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isParameterEncodingErrorSbvp":{"name":"isParameterEncodingError","abstract":"

    Returns whether the instance is .parameterEncodingFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23isParameterEncoderErrorSbvp":{"name":"isParameterEncoderError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isMultipartEncodingErrorSbvp":{"name":"isMultipartEncodingError","abstract":"

    Returns whether the instance is .multipartEncodingFailed. When true, the url and underlyingError","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isRequestAdaptationErrorSbvp":{"name":"isRequestAdaptationError","abstract":"

    Returns whether the instance is .requestAdaptationFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isResponseValidationErrorSbvp":{"name":"isResponseValidationError","abstract":"

    Returns whether the instance is .responseValidationFailed. When true, the acceptableContentTypes,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isResponseSerializationErrorSbvp":{"name":"isResponseSerializationError","abstract":"

    Returns whether the instance is .responseSerializationFailed. When true, the failedStringEncoding and","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isServerTrustEvaluationErrorSbvp":{"name":"isServerTrustEvaluationError","abstract":"

    Returns whether the instance is .serverTrustEvaluationFailed.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19isRequestRetryErrorSbvp":{"name":"isRequestRetryError","abstract":"

    Returns whether the instance is requestRetryFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO14urlConvertibleAA14URLConvertible_pSgvp":{"name":"urlConvertible","abstract":"

    The URLConvertible associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO3url10Foundation3URLVSgvp":{"name":"url","abstract":"

    The URL associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO15underlyingErrors0D0_pSgvp":{"name":"underlyingError","abstract":"

    The underlying Error responsible for generating the failure associated with .sessionInvalidated,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22acceptableContentTypesSaySSGSgvp":{"name":"acceptableContentTypes","abstract":"

    The acceptable Content-Types of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19responseContentTypeSSSgvp":{"name":"responseContentType","abstract":"

    The response Content-Type of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO12responseCodeSiSgvp":{"name":"responseCode","abstract":"

    The response code of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20failedStringEncodingSS10FoundationE0E0VSgvp":{"name":"failedStringEncoding","abstract":"

    The String.Encoding associated with a failed .stringResponse() call.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"AFError"},"Enums/AFError.html":{"name":"AFError","abstract":"

    AFError is the error type returned by Alamofire. It encompasses a few different types of errors, each with"},"Enums/AF.html":{"name":"AF","abstract":"

    Global namespace containing API for the default Session instance.

    "},"Enums/HTTPMethod.html":{"name":"HTTPMethod","abstract":"

    HTTP method definitions.

    "},"Enums/RetryResult.html":{"name":"RetryResult","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html#/s:9Alamofire15SessionDelegateC11fileManagerACSo06NSFileE0C_tcfc":{"name":"init(fileManager:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:didBecomeInvalidWithError:":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didReceiveChallenge:completionHandler:":{"name":"urlSession(_:task:didReceive:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:needNewBodyStream:":{"name":"urlSession(_:task:needNewBodyStream:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didFinishCollectingMetrics:":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didCompleteWithError:":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:taskIsWaitingForConnectivity:":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:didReceiveData:":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:willCacheResponse:completionHandler:":{"name":"urlSession(_:dataTask:willCacheResponse:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didFinishDownloadingToURL:":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/Session.html#/s:9Alamofire7SessionC7defaultACvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8delegateAA0B8DelegateCvp":{"name":"delegate","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC9rootQueueSo17OS_dispatch_queueCvp":{"name":"rootQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12requestQueueSo17OS_dispatch_queueCvp":{"name":"requestQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11interceptorAA18RequestInterceptor_pSgvp":{"name":"interceptor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serverTrustManagerAA06ServerdE0CSgvp":{"name":"serverTrustManager","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7sessionSo12NSURLSessionCvp":{"name":"session","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12eventMonitorAA014CompositeEventD0Cvp":{"name":"eventMonitor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20defaultEventMonitorsSayAA0D7Monitor_pGvp":{"name":"defaultEventMonitors","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC24startRequestsImmediatelySbvp":{"name":"startRequestsImmediately","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7session8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo12NSURLSessionC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(session:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13configuration8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo25NSURLSessionConfigurationC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(configuration:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtF":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlF":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtF":{"name":"request(_:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlF":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtF":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20sessionConfigurationSo012NSURLSessionD0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11retryResult3for5dueTo10completionyAA7RequestC_s5Error_pyAA05RetryD0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12retryRequest_9withDelayyAA0D0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13cancelRequestyyAA0D0CF":{"name":"cancelRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC21cancelDownloadRequest_21byProducingResumeDatayAA0dE0C_y10Foundation0I0VSgctF":{"name":"cancelDownloadRequest(_:byProducingResumeData:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC14suspendRequestyyAA0D0CF":{"name":"suspendRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13resumeRequestyyAA0D0CF":{"name":"resumeRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request3forAA7RequestCSgSo16NSURLSessionTaskC_tF":{"name":"request(for:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15didCompleteTaskyySo012NSURLSessionE0CF":{"name":"didCompleteTask(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC10credential3for2inSo15NSURLCredentialCSgSo16NSURLSessionTaskC_So20NSURLProtectionSpaceCtF":{"name":"credential(for:in:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC017cancelRequestsForB12Invalidation4withys5Error_pSg_tF":{"name":"cancelRequestsForSessionInvalidation(with:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/DisabledEvaluator.html#/s:9Alamofire17DisabledEvaluatorCACycfc":{"name":"init()","abstract":"

    Undocumented

    ","parent_name":"DisabledEvaluator"},"Classes/DisabledEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DisabledEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire23CompositeTrustEvaluatorC10evaluatorsACSayAA06ServerC10Evaluating_pG_tcfc":{"name":"init(evaluators:)","abstract":"

    Creates a CompositeTrustEvaluator.

    ","parent_name":"CompositeTrustEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"CompositeTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire24PublicKeysTrustEvaluatorC4keys24performDefaultValidation12validateHostACSaySo9SecKeyRefaG_S2btcfc":{"name":"init(keys:performDefaultValidation:validateHost:)","abstract":"

    Creates a PublicKeysTrustEvaluator.

    ","parent_name":"PublicKeysTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PublicKeysTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire32PinnedCertificatesTrustEvaluatorC12certificates016acceptSelfSignedC024performDefaultValidation12validateHostACSaySo17SecCertificateRefaG_S3btcfc":{"name":"init(certificates:acceptSelfSignedCertificates:performDefaultValidation:validateHost:)","abstract":"

    Creates a PinnedCertificatesTrustEvaluator.

    ","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3crlAEvpZ":{"name":"crl","abstract":"

    Perform revocation checking using the CRL (Certification Revocation List) method.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV21networkAccessDisabledAEvpZ":{"name":"networkAccessDisabled","abstract":"

    Consult only locally cached replies; do not use network access.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV4ocspAEvpZ":{"name":"ocsp","abstract":"

    Perform revocation checking using OCSP (Online Certificate Status Protocol).

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV9preferCRLAEvpZ":{"name":"preferCRL","abstract":"

    Prefer CRL revocation checking over OCSP; by default, OCSP is preferred.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV23requirePositiveResponseAEvpZ":{"name":"requirePositiveResponse","abstract":"

    Require a positive response to pass the policy. If the flag is not set, revocation checking is done on a","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3anyAEvpZ":{"name":"any","abstract":"

    Perform either OCSP or CRL checking. The checking is performed according to the method(s) specified in the","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueSuvp":{"name":"rawValue","abstract":"

    The raw value of the option.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueAESu_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates an Options value with the given CFOptionFlags.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html":{"name":"Options","abstract":"

    Represents the options to be use when evaluating the status of a certificate.","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire24RevocationTrustEvaluatorC24performDefaultValidation12validateHost7optionsACSb_SbAC7OptionsVtcfc":{"name":"init(performDefaultValidation:validateHost:options:)","abstract":"

    Creates a RevocationTrustEvaluator.

    ","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"RevocationTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21DefaultTrustEvaluatorC12validateHostACSb_tcfc":{"name":"init(validateHost:)","abstract":"

    Creates a DefaultTrustEvalutor.

    ","parent_name":"DefaultTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DefaultTrustEvaluator"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluatedSbvp":{"name":"allHostsMustBeEvaluated","abstract":"

    Determines whether all hosts for this ServerTrustManager must be evaluated. Defaults to true.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC10evaluatorsSDySSAA0bC10Evaluating_pGvp":{"name":"evaluators","abstract":"

    The dictionary of policies mapped to a particular host.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluated10evaluatorsACSb_SDySSAA0bC10Evaluating_pGtcfc":{"name":"init(allHostsMustBeEvaluated:evaluators:)","abstract":"

    Initializes the ServerTrustManager instance with the given evaluators.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC06serverC9Evaluator7forHostAA0bC10Evaluating_pSgSS_tKF":{"name":"serverTrustEvaluator(forHost:)","abstract":"

    Returns the ServerTrustEvaluating value for the given host, if one is set.

    ","parent_name":"ServerTrustManager"},"Classes/ConnectionLostRetryPolicy.html#/s:9Alamofire25ConnectionLostRetryPolicyC10retryLimit22exponentialBackoffBase0hI5Scale20retryableHTTPMethodsACSu_SuSdShyAA10HTTPMethodOGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:)","abstract":"

    Creates a ConnectionLostRetryPolicy instance from the specified parameters.

    ","parent_name":"ConnectionLostRetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC07defaultB5LimitSuvpZ":{"name":"defaultRetryLimit","abstract":"

    The default retry limit for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultExponentialBackoffBaseSuvpZ":{"name":"defaultExponentialBackoffBase","abstract":"

    The default exponential backoff base for retry policies (must be a minimum of 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC30defaultExponentialBackoffScaleSdvpZ":{"name":"defaultExponentialBackoffScale","abstract":"

    The default exponential backoff scale for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC27defaultRetryableHTTPMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultRetryableHTTPMethods","abstract":"

    The default HTTP methods to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC31defaultRetryableHTTPStatusCodesShySiGvpZ":{"name":"defaultRetryableHTTPStatusCodes","abstract":"

    The default HTTP status codes to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultRetryableURLErrorCodesShy10Foundation0F0V4CodeVGvpZ":{"name":"defaultRetryableURLErrorCodes","abstract":"

    The default URL error codes to retry.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimitSuvp":{"name":"retryLimit","abstract":"

    The total number of times the request is allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22exponentialBackoffBaseSuvp":{"name":"exponentialBackoffBase","abstract":"

    The base of the exponential backoff policy (should always be greater than or equal to 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC23exponentialBackoffScaleSdvp":{"name":"exponentialBackoffScale","abstract":"

    The scale of the exponential backoff.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC20retryableHTTPMethodsShyAA10HTTPMethodOGvp":{"name":"retryableHTTPMethods","abstract":"

    The HTTP methods that are allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC24retryableHTTPStatusCodesShySiGvp":{"name":"retryableHTTPStatusCodes","abstract":"

    The HTTP status codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22retryableURLErrorCodesShy10Foundation0E0V4CodeVGvp":{"name":"retryableURLErrorCodes","abstract":"

    The URL error codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimit22exponentialBackoffBase0fG5Scale20retryableHTTPMethods0J15HTTPStatusCodes0j8URLErrorM0ACSu_SuSdShyAA10HTTPMethodOGShySiGShy10Foundation0N0V4CodeVGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:retryableHTTPStatusCodes:retryableURLErrorCodes:)","abstract":"

    Creates an ExponentialBackoffRetryPolicy from the specified parameters.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RetryPolicy"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoderAA11DataDecoder_pvp":{"name":"decoder","abstract":"

    The JSONDecoder instance used to decode responses.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoder05emptyC5Codes0F14RequestMethodsACyxGAA11DataDecoder_p_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(decoder:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the values provided.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DecodableResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7optionsSo20NSJSONReadingOptionsVvp":{"name":"options","abstract":"

    JSONSerialization.ReadingOptions used when serializing a response.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC18emptyResponseCodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7options18emptyResponseCodes0E14RequestMethodsACSo20NSJSONReadingOptionsV_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(options:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"JSONResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encodingSS10FoundationE8EncodingVSgvp":{"name":"encoding","abstract":"

    Optional string encoding used to validate the response.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encoding05emptyC5Codes0F14RequestMethodsACSS10FoundationE8EncodingVSg_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(encoding:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"StringResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5Codes0E14RequestMethodsACShySiG_ShyAA10HTTPMethodOGtcfc":{"name":"init(emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the provided values.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DataResponseSerializer"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adaptersSayAA14RequestAdapter_pGvp":{"name":"adapters","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8retriersSayAA14RequestRetrier_pGvp":{"name":"retriers","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC12adaptHandler05retryD0ACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAHs5Error_pGctc_yAA7RequestC_AJsAM_pyAA05RetryI0Octctcfc":{"name":"init(adaptHandler:retryHandler:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC7adapter7retrierAcA14RequestAdapter_p_AA0E7Retrier_ptcfc":{"name":"init(adapter:retrier:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adapters8retriersACSayAA14RequestAdapter_pG_SayAA0E7Retrier_pGtcfc":{"name":"init(adapters:retriers:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Interceptor"},"Classes/Retrier.html#/s:9Alamofire7RetrierCyACyAA7RequestC_AA7SessionCs5Error_pyAA11RetryResultOctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Retrier"},"Classes/Retrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Retrier"},"Classes/Adapter.html#/s:9Alamofire7AdapterCyACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAFs5Error_pGctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Adapter"},"Classes/Adapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Adapter"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4datayAE10Foundation4DataVcAEmF":{"name":"data(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4fileyAE10Foundation3URLV_SbtcAEmF":{"name":"file(_:shouldRemove:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO6streamyAESo13NSInputStreamCcAEmF":{"name":"stream(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO06createD0AEyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html":{"name":"Uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC6uploadAA21UploadableConvertible_pvp":{"name":"upload","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC10uploadableAC10UploadableOSgvp":{"name":"uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC7cleanupyyF":{"name":"cleanup()","parent_name":"UploadRequest"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO7requestyAeA21URLRequestConvertible_pcAEmF":{"name":"request(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO10resumeDatayAE10Foundation0F0VcAEmF":{"name":"resumeData(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV29createIntermediateDirectoriesAEvpZ":{"name":"createIntermediateDirectories","abstract":"

    A DownloadOptions flag that creates intermediate directories for the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV18removePreviousFileAEvpZ":{"name":"removePreviousFile","abstract":"

    A DownloadOptions flag that removes a previous file from the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueSivp":{"name":"rawValue","abstract":"

    Returns the raw bitmask value of the option and satisfies the RawRepresentable protocol.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueAESi_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates a DownloadRequest.Options instance with the specified raw value.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html":{"name":"Options","abstract":"

    A collection of options to be executed prior to moving a downloaded file from the temporary URL to the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC11Destinationa":{"name":"Destination","abstract":"

    A closure executed once a download request has successfully completed in order to determine where to move the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC09suggestedB11Destination3for2in7options10Foundation3URLV011destinationJ0_AC7OptionsVAGtAJ_So17NSHTTPURLResponseCtcSo21NSSearchPathDirectoryV_So0nO10DomainMaskVAMtFZ":{"name":"suggestedDownloadDestination(for:in:options:)","abstract":"

    Creates a download file destination closure which uses the default file manager to move the temporary file to a","parent_name":"DownloadRequest"},"Classes/DownloadRequest/Downloadable.html":{"name":"Downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12downloadableAC12DownloadableOvp":{"name":"downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC4task13forResumeData5usingSo16NSURLSessionTaskC10Foundation0G0V_So0I0CtF":{"name":"task(forResumeData:using:)","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC6cancelACXDyF":{"name":"cancel()","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI3URLVSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation3URLVSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseData5queue17completionHandlerACXDSo012OS_dispatch_F0C_yAA0B8ResponseVy10Foundation0E0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response, a temporary URL and a","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DownloadRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC11convertibleAA21URLRequestConvertible_pvp":{"name":"convertible","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI0B0VSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC08responseB05queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC17responseDecodable5queue7decoder17completionHandlerACXDSo012OS_dispatch_F0C_AA0B7Decoder_pyAA0B8ResponseVyxGctSeRzlF":{"name":"responseDecodable(queue:decoder:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response and data, and returns whether the","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DataRequest"},"Classes/URLEncodedFormEncoder/Error.html#/s:9Alamofire21URLEncodedFormEncoderC5ErrorO17invalidRootObjectyAESScAEmF":{"name":"invalidRootObject(_:)","abstract":"

    An invalid root object was created by the encoder. Only keyed values are valid.

    ","parent_name":"Error"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO14percentEscapedyA2EmF":{"name":"percentEscaped","abstract":"

    Encodes spaces according to normal percent escaping rules (%20).

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO12plusReplacedyA2EmF":{"name":"plusReplaced","abstract":"

    Encodes spaces as +,

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    An empty set of square brackets ([]) are sppended to the key for every value.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    No brackets are appended to the key and the key is encoded as is.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Encodes true as 1, false as 0.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Encodes true as true, false as false.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html":{"name":"SpaceEncoding","abstract":"

    Configures how spaces are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/Error.html":{"name":"Error","abstract":"

    URLEncodedFormEncoder error.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncodingAC05ArrayF0Ovp":{"name":"arrayEncoding","abstract":"

    The ArrayEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC12boolEncodingAC04BoolF0Ovp":{"name":"boolEncoding","abstract":"

    The BoolEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13spaceEncodingAC05SpaceF0Ovp":{"name":"spaceEncoding","abstract":"

    The SpaceEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC17allowedCharacters10Foundation12CharacterSetVvp":{"name":"allowedCharacters","abstract":"

    The CharacterSet of allowed characters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncoding04boolF005spaceF017allowedCharactersA2C05ArrayF0O_AC04BoolF0OAC05SpaceF0O10Foundation12CharacterSetVtcfc":{"name":"init(arrayEncoding:boolEncoding:spaceEncoding:allowedCharacters:)","abstract":"

    Creates an instance from the supplied parameters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodeySSSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as a URL form encoded String.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodey10Foundation4DataVSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as Data. This is performed by first creating an encoded String and then returning the","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Applies the encoded query string to any existing query string for .get, .head, and .delete request.","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Applies the encoded query string to any existing query string from the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Applies the encoded query string to the httpBody of the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html":{"name":"Destination","abstract":"

    Defines where the URL-encoded string should be set for each URLRequest.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoderAA0bcE0Cvp":{"name":"encoder","abstract":"

    The URLEncodedFormEncoder to use.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The Destination for the URL-encoded string.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoder11destinationAcA0bcE0C_AC11DestinationOtcfc":{"name":"init(encoder:destination:)","abstract":"

    Creates an instance with the provided URLEncodedFormEncoder instance and Destination value.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"URLEncodedFormParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .prettyPrinted.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC10sortedKeysACvpZ":{"name":"sortedKeys","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .sortedKeys.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoder10Foundation11JSONEncoderCvp":{"name":"encoder","abstract":"

    JSONEncoder used to encode parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoderAC10Foundation11JSONEncoderC_tcfc":{"name":"init(encoder:)","abstract":"

    Creates an instance with the provided JSONEncoder.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"JSONParameterEncoder"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"AlamofireNotifications"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO11initializedyA2EmF":{"name":"initialized","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO7resumedyA2EmF":{"name":"resumed","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9suspendedyA2EmF":{"name":"suspended","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9cancelledyA2EmF":{"name":"cancelled","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html":{"name":"State","abstract":"

    State of the Request, with managed transitions between states set when calling resume(), suspend(), or","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id10Foundation4UUIDVvp":{"name":"id","abstract":"

    UUID prividing a unique identifier for the Request, used in the Hashable and Equatable conformances.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15underlyingQueueSo17OS_dispatch_queueCvp":{"name":"underlyingQueue","abstract":"

    The serial queue for all internal async actions.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    The queue used for all serialization actions. By default it’s a serial queue that targets underlyingQueue.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12eventMonitorAA05EventD0_pSgvp":{"name":"eventMonitor","abstract":"

    EventMonitor used for event callbacks.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11interceptorAA0B11Interceptor_pSgvp":{"name":"interceptor","abstract":"

    The Request‘s interceptor.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8delegateAA0B8Delegate_pSgvp":{"name":"delegate","abstract":"

    The Request‘s delegate.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5stateAC5StateOvp":{"name":"state","abstract":"

    State of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isCancelledSbvp":{"name":"isCancelled","abstract":"

    Returns whether state is .cancelled.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9isResumedSbvp":{"name":"isResumed","abstract":"

    Returns whether state is.resumed`.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isSuspendedSbvp":{"name":"isSuspended","abstract":"

    Returns whether state is .suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13isInitializedSbvp":{"name":"isInitialized","abstract":"

    Returns whether state is .initialized.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15ProgressHandlera":{"name":"ProgressHandler","abstract":"

    Closure type executed when monitoring the upload or download progress of a request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgressSo10NSProgressCvp":{"name":"uploadProgress","abstract":"

    Progress of the upload of the body of the executed URLRequest. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgressSo10NSProgressCvp":{"name":"downloadProgress","abstract":"

    Progress of the download of any response data. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10credentialSo15NSURLCredentialCSgvp":{"name":"credential","abstract":"

    URLCredential used for authentication challenges. Created by calling one of the authenticate methods.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8requestsSay10Foundation10URLRequestVGvp":{"name":"requests","abstract":"

    All URLRequests created on behalf of the Request, including original and adapted requests.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC05firstB010Foundation10URLRequestVSgvp":{"name":"firstRequest","abstract":"

    First URLRequest created on behalf of the Request. May not be the first one actually executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC04lastB010Foundation10URLRequestVSgvp":{"name":"lastRequest","abstract":"

    Last URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    Current URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC17performedRequestsSay10Foundation10URLRequestVGvp":{"name":"performedRequests","abstract":"

    URLRequests from all of the URLSessionTasks executed on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    HTTPURLResponse received from the server, if any. If the Request was retried, this is the response of the","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5tasksSaySo16NSURLSessionTaskCGvp":{"name":"tasks","abstract":"

    All URLSessionTasks created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9firstTaskSo012NSURLSessionD0CSgvp":{"name":"firstTask","abstract":"

    First URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8lastTaskSo012NSURLSessionD0CSgvp":{"name":"lastTask","abstract":"

    Last URLSessionTask crated on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC4taskSo16NSURLSessionTaskCSgvp":{"name":"task","abstract":"

    Current URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10allMetricsSaySo016NSURLSessionTaskD0CGvp":{"name":"allMetrics","abstract":"

    All URLSessionTaskMetrics gathered on behalf of the Request. Should correspond to the tasks created.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12firstMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"firstMetrics","abstract":"

    First URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11lastMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"lastMetrics","abstract":"

    Last URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    Current URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10retryCountSivp":{"name":"retryCount","abstract":"

    Number of times the Request has been retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5errors5Error_pSgvp":{"name":"error","abstract":"

    Error returned from Alamofire internally, from the network request directly, or any validators executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id15underlyingQueue013serializationE012eventMonitor11interceptor8delegateAC10Foundation4UUIDV_So17OS_dispatch_queueCAnA05EventH0_pSgAA0B11Interceptor_pSgAA0B8Delegate_ptcfc":{"name":"init(id:underlyingQueue:serializationQueue:eventMonitor:interceptor:delegate:)","abstract":"

    Default initializer for the Request superclass.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6cancelACXDyF":{"name":"cancel()","abstract":"

    Cancels the Request. Once cancelled, a Request can no longer be resumed or suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7suspendACXDyF":{"name":"suspend()","abstract":"

    Suspends the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6resumeACXDyF":{"name":"resume()","abstract":"

    Resumes the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate8username8password11persistenceACXDSS_SSSo26NSURLCredentialPersistenceVtF":{"name":"authenticate(username:password:persistence:)","abstract":"

    Associates a credential using the provided values with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate4withACXDSo15NSURLCredentialC_tF":{"name":"authenticate(with:)","abstract":"

    Associates the provided credential with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"downloadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is read from the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"uploadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is sent to the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8redirect5usingACXDAA15RedirectHandler_p_tF":{"name":"redirect(using:)","abstract":"

    Sets the redirect handler for the Request which will be used if a redirect response is encountered.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13cacheResponse5usingACXDAA06CachedD7Handler_p_tF":{"name":"cacheResponse(using:)","abstract":"

    Sets the cached response handler for the Request which will be used when attempting to cache a response.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7cleanupyyF":{"name":"cleanup()","abstract":"

    Final cleanup step executed when a Request finishes response serialization.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didResumeNotificationSo18NSNotificationNameavpZ":{"name":"didResumeNotification","abstract":"

    Posted when a Request is resumed. The Notification contains the resumed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC22didSuspendNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendNotification","abstract":"

    Posted when a Request is suspended. The Notification contains the suspended Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didCancelNotificationSo18NSNotificationNameavpZ":{"name":"didCancelNotification","abstract":"

    Posted when a Request is cancelled. The Notification contains the cancelled Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didFinishNotificationSo18NSNotificationNameavpZ":{"name":"didFinishNotification","abstract":"

    Posted when a Request is finished. The Notification contains the completed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didResumeTaskNotificationSo18NSNotificationNameavpZ":{"name":"didResumeTaskNotification","abstract":"

    Posted when a URLSessionTask is resumed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC26didSuspendTaskNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendTaskNotification","abstract":"

    Posted when a URLSessionTask is suspended. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didCancelTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCancelTaskNotification","abstract":"

    Posted when a URLSessionTask is cancelled. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC27didCompleteTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCompleteTaskNotification","abstract":"

    Posted when a URLSessionTask is completed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"Request"},"Classes/Request.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11descriptionSSvp":{"name":"description","abstract":"

    A textual representation of this instance, including the HTTPMethod and URL if the URLRequest has been","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    A textual representation of this instance in the form of a cURL command.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16ValidationResulta":{"name":"ValidationResult","abstract":"

    Used to represent whether a validation succeeded or failed.

    ","parent_name":"Request"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO14ethernetOrWiFiyA2EmF":{"name":"ethernetOrWiFi","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF":{"name":"wwan","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO7unknownyA2EmF":{"name":"unknown","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO12notReachableyA2EmF":{"name":"notReachable","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO9reachableyAeC14ConnectionTypeOcAEmF":{"name":"reachable(_:)","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html":{"name":"NetworkReachabilityStatus","abstract":"

    Defines the various states of network reachability.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager/ConnectionType.html":{"name":"ConnectionType","abstract":"

    Defines the various connection types detected by reachability flags.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8Listenera":{"name":"Listener","abstract":"

    A closure executed when the network reachability status changes. The closure takes a single argument: the","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC11isReachableSbvp":{"name":"isReachable","abstract":"

    Whether the network is currently reachable.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC17isReachableOnWWANSbvp":{"name":"isReachableOnWWAN","abstract":"

    Whether the network is currently reachable over the WWAN interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp":{"name":"isReachableOnEthernetOrWiFi","abstract":"

    Whether the network is currently reachable over Ethernet or WiFi interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC07networkC6StatusAC0bcF0Ovp":{"name":"networkReachabilityStatus","abstract":"

    The current network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp":{"name":"listenerQueue","abstract":"

    The dispatch queue to execute the listener closure on.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8listeneryAC0bC6StatusOcSgvp":{"name":"listener","abstract":"

    A closure executed when the network reachability status changes.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC5flagsSo09SCNetworkC5FlagsVSgvp":{"name":"flags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkcF0Vvp":{"name":"previousFlags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC4hostACSgSS_tcfc":{"name":"init(host:)","abstract":"

    Creates a NetworkReachabilityManager instance with the specified host.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCACSgycfc":{"name":"init()","abstract":"

    Creates a NetworkReachabilityManager instance that monitors the address 0.0.0.0.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC14startListeningSbyF":{"name":"startListening()","abstract":"

    Starts listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13stopListeningyyF":{"name":"stopListening()","abstract":"

    Stops listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC23encodingMemoryThresholds6UInt64VvpZ":{"name":"encodingMemoryThreshold","abstract":"

    Default memory threshold used when encoding MultipartFormData, in bytes.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11contentTypeSSvp":{"name":"contentType","abstract":"

    The Content-Type header value containing the boundary used to generate the multipart/form-data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC13contentLengths6UInt64Vvp":{"name":"contentLength","abstract":"

    The content length of all body parts used to generate the multipart/form-data not including the boundaries.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC8boundarySSvp":{"name":"boundary","abstract":"

    The boundary used to separate the body parts in the encoded form data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11fileManager8boundaryACSo06NSFileF0C_SSSgtcfc":{"name":"init(fileManager:boundary:)","abstract":"

    Creates a multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation0D0V_S2SSgAKtF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the data and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withNamey10Foundation3URLV_SStF":{"name":"append(_:withName:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation3URLV_S3StF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength4name8fileName8mimeTypeySo13NSInputStreamC_s6UInt64VS3StF":{"name":"append(_:withLength:name:fileName:mimeType:)","abstract":"

    Creates a body part from the stream and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength7headersySo13NSInputStreamC_s6UInt64VAA11HTTPHeadersVtF":{"name":"append(_:withLength:headers:)","abstract":"

    Creates a body part with the headers, stream and length and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6encode10Foundation0D0VyKF":{"name":"encode()","abstract":"

    Encodes all the appended body parts into a single Data value.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC012writeEncodedD02toy10Foundation3URLV_tKF":{"name":"writeEncodedData(to:)","abstract":"

    Writes the appended body parts into the given file URL.

    ","parent_name":"MultipartFormData"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtcSgvp":{"name":"sessionDidBecomeInvalidWithError","abstract":"

    Closure called on the urlSession(_:didBecomeInvalidWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0I4TaskCSo019NSURLAuthenticationH0CtcSgvp":{"name":"taskDidReceiveChallenge","abstract":"

    Closure called on the urlSession(_:task:didReceive:completionHandler:).

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0J4TaskCs5Int64VA2JtcSgvp":{"name":"taskDidSendBodyData","abstract":"

    Closure that receives urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskNeedNewBodyStream","abstract":"

    Closure called on the urlSession(_:task:needNewBodyStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0I4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp":{"name":"taskWillPerformHTTPRedirection","abstract":"

    Closure called on the urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0J4TaskCSo0jkI0CtcSgvp":{"name":"taskDidFinishCollectingMetrics","abstract":"

    Closure called on the urlSession(_:task:didFinishCollecting:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0H4TaskCs5Error_pSgtcSgvp":{"name":"taskDidComplete","abstract":"

    Closure called on the urlSession(_:task:didCompleteWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskIsWaitingForConnectivity","abstract":"

    Closure called on the urlSession(_:taskIsWaitingForConnectivity:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0jiF0C10Foundation0I0VtcSgvp":{"name":"dataTaskDidReceiveData","abstract":"

    Closure that recieves the urlSession(_:dataTask:didReceive:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0j4DataF0CSo19NSCachedURLResponseCtcSgvp":{"name":"dataTaskWillCacheResponse","abstract":"

    Closure called on the urlSession(_:dataTask:willCacheResponse:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0l8DownloadF0C10Foundation0K0VtcSgvp":{"name":"downloadTaskDidFinishDownloadingToURL","abstract":"

    Closure called on the urlSession(_:downloadTask:didFinishDownloadingTo:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0j8DownloadF0Cs5Int64VA2JtcSgvp":{"name":"downloadTaskDidWriteData","abstract":"

    Closure called on the urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0k8DownloadF0Cs5Int64VAJtcSgvp":{"name":"downloadTaskDidResumeAtOffset","abstract":"

    Closure called on the urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateURLRequestyAA7RequestC_10Foundation0H0VtcSgvp":{"name":"requestDidCreateURLRequest","abstract":"

    Closure called on the request(_:didCreateURLRequest:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateURLRequestWithErroryAA7RequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToCreateURLRequestWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC038requestDidAdaptInitialRequestToAdaptedI0yAA0I0C_10Foundation10URLRequestVAItcSgvp":{"name":"requestDidAdaptInitialRequestToAdaptedRequest","abstract":"

    Closure called on the request(_:didAdaptInitialRequest:to:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC40requestDidFailToAdaptURLRequestWithErroryAA7RequestC_10Foundation0J0Vs0L0_ptcSgvp":{"name":"requestDidFailToAdaptURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToAdaptURLRequest:withError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCreateTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCreateTask","abstract":"

    Closure called on the request(_:didCreateTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidGatherMetricsyAA7RequestC_So016NSURLSessionTaskH0CtcSgvp":{"name":"requestDidGatherMetrics","abstract":"

    Closure called on the request(_:didGatherMetrics:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32requestDidFailTaskEarlyWithErroryAA7RequestC_So012NSURLSessionH0Cs0K0_ptcSgvp":{"name":"requestDidFailTaskEarlyWithError","abstract":"

    Closure called on the request(_:didFailTask:earlyWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidCompleteTaskWithErroryAA7RequestC_So012NSURLSessionH0Cs0J0_pSgtcSgvp":{"name":"requestDidCompleteTaskWithError","abstract":"

    Closure called on the request(_:didCompleteTask:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestIsRetryingyAA7RequestCcSgvp":{"name":"requestIsRetrying","abstract":"

    Closure called on the requestIsRetrying(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidFinishyAA7RequestCcSgvp":{"name":"requestDidFinish","abstract":"

    Closure called on the requestDidFinish(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidResumeyAA7RequestCcSgvp":{"name":"requestDidResume","abstract":"

    Closure called on the requestDidResume(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidResumeTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidResumeTask","abstract":"

    Closure called on the request(_:didResumeTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestDidSuspendyAA7RequestCcSgvp":{"name":"requestDidSuspend","abstract":"

    Closure called on the requestDidSuspend(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21requestDidSuspendTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidSuspendTask","abstract":"

    Closure called on the request(_:didSuspendTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidCancelyAA7RequestCcSgvp":{"name":"requestDidCancel","abstract":"

    Closure called on the requestDidCancel(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCancelTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCancelTask","abstract":"

    Closure called on the request(_:didCancelTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC47requestDidValidateRequestResponseDataWithResultyAA0jH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG0J0VSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseDataWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:data:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidParseResponseyAA11DataRequestC_AA0iH0Vy10Foundation0I0VSgGtcSgvp":{"name":"requestDidParseResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateUploadableyAA13UploadRequestC_AF0H0OtcSgvp":{"name":"requestDidCreateUploadable","abstract":"

    Closure called on the request(_:didCreateUploadable:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateUploadableWithErroryAA13UploadRequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateUploadableWithError","abstract":"

    Closure called on the request(_:didFailToCreateUploadableWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28requestDidProvideInputStreamyAA13UploadRequestC_So07NSInputI0CtcSgvp":{"name":"requestDidProvideInputStream","abstract":"

    Closure called on the request(_:didProvideInputStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC46requestDidFinishDownloadingUsingTaskWithResultyAA15DownloadRequestC_So012NSURLSessionJ0Cs0L0Oy10Foundation3URLVs5Error_pGtcSgvp":{"name":"requestDidFinishDownloadingUsingTaskWithResult","abstract":"

    Closure called on the request(_:didFinishDownloadingUsing:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30requestDidCreateDestinationURLyAA15DownloadRequestC_10Foundation0I0VtcSgvp":{"name":"requestDidCreateDestinationURL","abstract":"

    Closure called on the request(_:didCreateDestinationURL:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC50requestDidValidateRequestResponseFileURLWithResultyAA08DownloadH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG3URLVSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseFileURLWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:temporaryURL:destinationURL:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidParseDownloadResponseyAA0H7RequestC_AA0hI0Vy10Foundation3URLVSgGtcSgvp":{"name":"requestDidParseDownloadResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC5queueACSo012OS_dispatch_E0C_tcfc":{"name":"init(queue:)","abstract":"

    Undocumented

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html":{"name":"CompositeEventMonitor","abstract":"

    An EventMonitor which can contain multiple EventMonitors and calls their methods on their queues.

    "},"Classes/ClosureEventMonitor.html":{"name":"ClosureEventMonitor","abstract":"

    EventMonitor that allows optional closures to be set to receive events.

    "},"Classes/MultipartFormData.html":{"name":"MultipartFormData","abstract":"

    Constructs multipart/form-data for uploads within an HTTP or HTTPS body. There are currently two ways to encode"},"Classes/NetworkReachabilityManager.html":{"name":"NetworkReachabilityManager","abstract":"

    The NetworkReachabilityManager class listens for reachability changes of hosts and addresses for both WWAN and"},"Classes/Request.html":{"name":"Request","abstract":"

    Request is the common superclass of all Alamofire request types and provides common state, delegate, and callback"},"Classes/AlamofireNotifications.html":{"name":"AlamofireNotifications","abstract":"

    EventMonitor that provides Alamofire’s notifications.

    "},"Classes/JSONParameterEncoder.html":{"name":"JSONParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as JSON body data.

    "},"Classes/URLEncodedFormParameterEncoder.html":{"name":"URLEncodedFormParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as URL-encoded query strings to be set on the URL or as body data, depending"},"Classes/URLEncodedFormEncoder.html":{"name":"URLEncodedFormEncoder","abstract":"

    An object that encodes instances into URL-encoded query strings.

    "},"Classes/DataRequest.html":{"name":"DataRequest","abstract":"

    Undocumented

    "},"Classes/DownloadRequest.html":{"name":"DownloadRequest","abstract":"

    Undocumented

    "},"Classes/UploadRequest.html":{"name":"UploadRequest","abstract":"

    Undocumented

    "},"Classes/Adapter.html":{"name":"Adapter","abstract":"

    Undocumented

    "},"Classes/Retrier.html":{"name":"Retrier","abstract":"

    Undocumented

    "},"Classes/Interceptor.html":{"name":"Interceptor","abstract":"

    Undocumented

    "},"Classes/DataResponseSerializer.html":{"name":"DataResponseSerializer","abstract":"

    A ResponseSerializer that performs minimal reponse checking and returns any response data as-is. By default, a"},"Classes/StringResponseSerializer.html":{"name":"StringResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a String. By default, a request returning nil or no"},"Classes/JSONResponseSerializer.html":{"name":"JSONResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data using JSONSerialization. By default, a request returning"},"Classes/DecodableResponseSerializer.html":{"name":"DecodableResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a generic value using any type that conforms to"},"Classes/RetryPolicy.html":{"name":"RetryPolicy","abstract":"

    A retry policy that retries requests using an exponential backoff for allowed HTTP methods and HTTP status codes"},"Classes/ConnectionLostRetryPolicy.html":{"name":"ConnectionLostRetryPolicy","abstract":"

    A retry policy that automatically retries idempotent requests for network connection lost errors. For more"},"Classes/ServerTrustManager.html":{"name":"ServerTrustManager","abstract":"

    Responsible for managing the mapping of ServerTrustEvaluating values to given hosts.

    "},"Classes/DefaultTrustEvaluator.html":{"name":"DefaultTrustEvaluator","abstract":"

    An evaluator which uses the default server trust evaluation while allowing you to control whether to validate the"},"Classes/RevocationTrustEvaluator.html":{"name":"RevocationTrustEvaluator","abstract":"

    An evaluator which Uses the default and revoked server trust evaluations allowing you to control whether to validate"},"Classes/PinnedCertificatesTrustEvaluator.html":{"name":"PinnedCertificatesTrustEvaluator","abstract":"

    Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/PublicKeysTrustEvaluator.html":{"name":"PublicKeysTrustEvaluator","abstract":"

    Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/CompositeTrustEvaluator.html":{"name":"CompositeTrustEvaluator","abstract":"

    Uses the provided evaluators to validate the server trust. The trust is only considered valid if all of the"},"Classes/DisabledEvaluator.html":{"name":"DisabledEvaluator","abstract":"

    Disables all evaluation which in turn will always consider any server trust as valid.

    "},"Classes/Session.html":{"name":"Session","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html":{"name":"SessionDelegate","abstract":"

    Undocumented

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Extensions.html":{"name":"Extensions","abstract":"

    The following extensions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "},"Typealiases.html":{"name":"Type Aliases","abstract":"

    The following type aliases are available globally.

    "}} \ No newline at end of file +{"Typealiases.html#/s:9Alamofire8AFResulta":{"name":"AFResult","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire10Parametersa":{"name":"Parameters","abstract":"

    A dictionary of parameters to apply to a URLRequest.

    "},"Typealiases.html#/s:9Alamofire12AdaptHandlera":{"name":"AdaptHandler","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire12RetryHandlera":{"name":"RetryHandler","abstract":"

    Undocumented

    "},"Structs/Empty.html#/s:9Alamofire5EmptyV5valueACvpZ":{"name":"value","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/Empty.html#/s:9Alamofire5EmptyV10emptyValueACyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    The final destination URL of the data returned from the server after it is moved.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    The resume data generated if the request was cancelled.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request8response7fileURL10resumeData7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAL0G0VSgAL0I0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:fileURL:resumeData:metrics:serializationDuration:result:)","abstract":"

    Creates a DownloadResponse instance with the specified parameters derived from response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    The data returned by the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request8response4data7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:data:metrics:serializationDuration:result:)","abstract":"

    Creates a DataResponse instance with the specified parameters derviced from the response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the specified closure when the result of this DataResponse is a success, passing the unwrapped","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DataResponse is a success, passing the unwrapped result","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6followyA2EmF":{"name":"follow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO11doNotFollowyA2EmF":{"name":"doNotFollow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6modifyyAE10Foundation10URLRequestVSgSo16NSURLSessionTaskC_AISo17NSHTTPURLResponseCtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the Redirector type.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV6followACvpZ":{"name":"follow","abstract":"

    Returns a Redirector with a follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV11doNotFollowACvpZ":{"name":"doNotFollow","abstract":"

    Returns a Redirector with a do not follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the Redirector.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a Redirector instance from the Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","parent_name":"Redirector"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a JSONEncoding instance with default writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns a JSONEncoding instance with .prettyPrinted writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsSo20NSJSONWritingOptionsVvp":{"name":"options","abstract":"

    The options for writing the parameters as JSON data.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsACSo20NSJSONWritingOptionsV_tcfc":{"name":"init(options:)","abstract":"

    Creates a JSONEncoding instance using the specified options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_14withJSONObject10Foundation10URLRequestVAA0G11Convertible_p_ypSgtKF":{"name":"encode(_:withJSONObject:)","abstract":"

    Creates a URL request by encoding the JSON object and setting the resulting data on the HTTP body.

    ","parent_name":"JSONEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html":{"name":"Destination","abstract":"

    Defines whether the url-encoded query string is applied to the existing query string or HTTP body of the","parent_name":"URLEncoding"},"Structs/URLEncoding/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a default URLEncoding instance with a .methodDependent destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11queryStringACvpZ":{"name":"queryString","abstract":"

    Returns a URLEncoding instance with a .queryString destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV8httpBodyACvpZ":{"name":"httpBody","abstract":"

    Returns a URLEncoding instance with an .httpBody destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The destination defining where the encoded query string is to be applied to the URL request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV13arrayEncodingAC05ArrayD0Ovp":{"name":"arrayEncoding","abstract":"

    The encoding to use for Array parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV12boolEncodingAC04BoolD0Ovp":{"name":"boolEncoding","abstract":"

    The encoding to use for Bool parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destination13arrayEncoding04boolE0A2C11DestinationO_AC05ArrayE0OAC04BoolE0Otcfc":{"name":"init(destination:arrayEncoding:boolEncoding:)","abstract":"

    Creates a URLEncoding instance using the specified destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV15queryComponents7fromKey5valueSaySS_SStGSS_yptF":{"name":"queryComponents(fromKey:value:)","abstract":"

    Creates percent-escaped, URL encoded query string components from the given key-value pair using recursion.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6escapeyS2SF":{"name":"escape(_:)","abstract":"

    Returns a percent-escaped string following RFC 3986 for a query string key or value.

    ","parent_name":"URLEncoding"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4nameSSvp":{"name":"name","abstract":"

    Name of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV5valueSSvp":{"name":"value","abstract":"

    Value of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4name5valueACSS_SStcfc":{"name":"init(name:value:)","abstract":"

    Creates an instance from the given name and value.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13acceptCharsetyACSSFZ":{"name":"acceptCharset(_:)","abstract":"

    Returns an Accept-Charset header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptLanguageyACSSFZ":{"name":"acceptLanguage(_:)","abstract":"

    Returns an Accept-Language header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptEncodingyACSSFZ":{"name":"acceptEncoding(_:)","abstract":"

    Returns an Accept-Encoding header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization8username8passwordACSS_SStFZ":{"name":"authorization(username:password:)","abstract":"

    Returns a Basic Authorization header using the username and password provided.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization11bearerTokenACSS_tFZ":{"name":"authorization(bearerToken:)","abstract":"

    Returns a Bearer Authorization header using the bearerToken provided

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorizationyACSSFZ":{"name":"authorization(_:)","abstract":"

    Returns an Authorization header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV18contentDispositionyACSSFZ":{"name":"contentDisposition(_:)","abstract":"

    Returns a Content-Disposition header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV11contentTypeyACSSFZ":{"name":"contentType(_:)","abstract":"

    Returns a Content-Type header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV9userAgentyACSSFZ":{"name":"userAgent(_:)","abstract":"

    Returns a User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptEncodingACvpZ":{"name":"defaultAcceptEncoding","abstract":"

    Returns Alamofire’s default Accept-Encoding header, appropriate for the encodings supporte by particular OS","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptLanguageACvpZ":{"name":"defaultAcceptLanguage","abstract":"

    Returns Alamofire’s default Accept-Language header, generated by querying Locale for the user’s","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV16defaultUserAgentACvpZ":{"name":"defaultUserAgent","abstract":"

    Returns Alamofire’s default User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVACycfc":{"name":"init()","abstract":"

    Create an empty instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSayAA10HTTPHeaderVGcfc":{"name":"init(_:)","abstract":"

    Create an instance from an array of HTTPHeaders. Duplicate case-insensitive names are collapsed into the last","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSDyS2SGcfc":{"name":"init(_:)","abstract":"

    Create an instance from a [String: String]. Duplicate case-insensitive names are collapsed into the last name","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3add4name5valueySS_SStF":{"name":"add(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3addyyAA10HTTPHeaderVF":{"name":"add(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6update4name5valueySS_SStF":{"name":"update(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6updateyyAA10HTTPHeaderVF":{"name":"update(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6remove4nameySS_tF":{"name":"remove(name:)","abstract":"

    Case-insensitively removes an HTTPHeader, if it exists, from the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV4sortyyF":{"name":"sort()","abstract":"

    Sort the current instance by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6sortedACyF":{"name":"sorted()","abstract":"

    Returns an instance sorted by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV5value3forSSSgSS_tF":{"name":"value(for:)","abstract":"

    Case-insensitively find a header’s value by name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVySSSgSScip":{"name":"subscript(_:)","abstract":"

    Case-insensitively access the header with the given name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV10dictionarySDyS2SGvp":{"name":"dictionary","abstract":"

    The dictionary representation of all headers.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s30ExpressibleByDictionaryLiteralP010dictionaryD0x3KeyQz_5ValueQztd_tcfc":{"name":"init(dictionaryLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s25ExpressibleByArrayLiteralP05arrayD0x0cD7ElementQzd_tcfc":{"name":"init(arrayLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:ST12makeIterator0B0QzyF":{"name":"makeIterator()","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl10startIndex0B0Qzvp":{"name":"startIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl8endIndex0B0Qzvp":{"name":"endIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sly7ElementQz5IndexQzcip":{"name":"subscript(_:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl5index5after5IndexQzAD_tF":{"name":"index(after:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV7defaultACvpZ":{"name":"default","abstract":"

    The default set of HTTPHeaders used by Alamofire. Includes Accept-Encoding, Accept-Language, and","parent_name":"HTTPHeaders"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO5cacheyA2EmF":{"name":"cache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO10doNotCacheyA2EmF":{"name":"doNotCache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO6modifyyAESo19NSCachedURLResponseCSgSo20NSURLSessionDataTaskC_AHtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the ResponseCacher type.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV5cacheACvpZ":{"name":"cache","abstract":"

    Returns a ResponseCacher with a follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV10doNotCacheACvpZ":{"name":"doNotCache","abstract":"

    Returns a ResponseCacher with a do not follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the ResponseCacher.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a ResponseCacher instance from the Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","parent_name":"ResponseCacher"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE12certificatesSaySo17SecCertificateRefaGvp":{"name":"certificates","abstract":"

    Returns all valid cer, crt, and der certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE10publicKeysSaySo9SecKeyRefaGvp":{"name":"publicKeys","abstract":"

    Returns all public keys for the valid certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE5paths19forResourcesOfTypesSaySSGAH_tF":{"name":"paths(forResourcesOfTypes:)","abstract":"

    Returns all pathnames for the resources identified by the provided file extensions.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate6policy13errorProducerySo0c6PolicyE0a_s5Error_ps5Int32V_So0cD10ResultTypeVtXEtKF":{"name":"validate(policy:errorProducer:)","abstract":"

    Attempts to validate self using the policy provided and transforming any error produced using the closure passed.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE5apply6policyAESo0c6PolicyE0a_tKF":{"name":"apply(policy:)","abstract":"

    Applies a SecPolicy to self, throwing if it fails.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate13errorProducerys5Error_ps5Int32V_So0cD10ResultTypeVtXE_tKF":{"name":"validate(errorProducer:)","abstract":"

    Validate self, passing any failure values through errorProducer.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE21setAnchorCertificatesyySaySo0c11CertificateE0aGKF":{"name":"setAnchorCertificates(_:)","abstract":"

    Sets a custom certificate chain on self, allowing full validation of a self-signed certificate and its chain.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    The public keys contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE12certificatesSaySo0c11CertificateE0aGvp":{"name":"certificates","abstract":"

    The SecCertificates contained i self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE15certificateDataSay10Foundation0G0VGvp":{"name":"certificateData","abstract":"

    The Data values for all certificates contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE24performDefaultValidation7forHostySS_tKF":{"name":"performDefaultValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.default. This evaluation does not validate the hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE17performValidation7forHostySS_tKF":{"name":"performValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.hostname(host), which performs the default validation as well as","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE7defaultAEvpZ":{"name":"default","abstract":"

    Creates a SecPolicy instance which will validate server certificates but not require a host name match.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE8hostnameyAESSFZ":{"name":"hostname(_:)","abstract":"

    Creates a SecPolicy instance which will validate server certificates and much match the provided hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE10revocation7optionsAeA24RevocationTrustEvaluatorC7OptionsV_tKFZ":{"name":"revocation(options:)","abstract":"

    Creates a SecPolicy which checks the revocation of certificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE4dataSay10Foundation4DataVGvp":{"name":"data","abstract":"

    All Data values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    All public SecKey values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo17SecCertificateRefaRszlE9publicKeySo0cgE0aSgvp":{"name":"publicKey","abstract":"

    The public key for self, if it can be extracted.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAAs5Int32VRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is errSecSuccess.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo18SecTrustResultTypeVRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is.unspecifiedor.proceed`.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo25NSURLSessionConfigurationCRbzlE7defaultAEvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html":{"name":"AlamofireExtension","abstract":"

    Type that acts as a generic extension point for all AlamofireExtended types.

    "},"Structs/ResponseCacher.html":{"name":"ResponseCacher","abstract":"

    ResponseCacher is a convenience CachedResponseHandler making it easy to cache, not cache, or modify a cached"},"Structs/HTTPHeaders.html":{"name":"HTTPHeaders","abstract":"

    An order-preserving and case-insensitive representation of HTTP headers.

    "},"Structs/HTTPHeader.html":{"name":"HTTPHeader","abstract":"

    A representation of a single HTTP header’s name / value pair.

    "},"Structs/URLEncoding.html":{"name":"URLEncoding","abstract":"

    Creates a url-encoded query string to be set as or appended to any existing URL query string or set as the HTTP"},"Structs/JSONEncoding.html":{"name":"JSONEncoding","abstract":"

    Uses JSONSerialization to create a JSON representation of the parameters object, which is set as the body of the"},"Structs/Redirector.html":{"name":"Redirector","abstract":"

    Redirector is a convenience RedirectHandler making it easy to follow, not follow, or modify a redirect.

    "},"Structs/DataResponse.html":{"name":"DataResponse","abstract":"

    Used to store all data associated with a serialized response of a data or upload request.

    "},"Structs/DownloadResponse.html":{"name":"DownloadResponse","abstract":"

    Used to store all data associated with a serialized response of a download request.

    "},"Structs/Empty.html":{"name":"Empty","abstract":"

    A type representing an empty response. Use Empty.value to get the instance.

    "},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertibleP02asB010Foundation0B0VyKF":{"name":"asURLRequest()","abstract":"

    Returns a URLRequest or throws if an Error was encoutered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertiblePAAE10urlRequest10Foundation0B0VSgvp":{"name":"urlRequest","abstract":"

    The URLRequest returned by discarding any Error encountered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLConvertible.html#/s:9Alamofire14URLConvertibleP5asURL10Foundation0D0VyKF":{"name":"asURL()","abstract":"

    Returns a URL from the conforming instance or throws.

    ","parent_name":"URLConvertible"},"Protocols/ServerTrustEvaluating.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"ServerTrustEvaluating"},"Protocols/DataDecoder.html#/s:9Alamofire11DataDecoderP6decode_4fromqd__qd__m_10Foundation0B0VtKSeRd__lF":{"name":"decode(_:from:)","abstract":"

    Decode Data into the provided type.

    ","parent_name":"DataDecoder"},"Protocols/EmptyResponse.html#/s:9Alamofire13EmptyResponseP10emptyValuexyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"EmptyResponse"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP05emptyB5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE26defaultEmptyRequestMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultEmptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE012defaultEmptyB5CodesShySiGvpZ":{"name":"defaultEmptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE018requestAllowsEmptyB4DataySbSg10Foundation10URLRequestVSgF":{"name":"requestAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE019responseAllowsEmptyB4DataySbSgSo17NSHTTPURLResponseCSgF":{"name":"responseAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE05emptyB7Allowed10forRequest8responseSb10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgtF":{"name":"emptyResponseAllowed(forRequest:response:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this DownloadResponseSerializerType.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP09serializeB07request8response7fileURL5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0J0VSgs5Error_pSgtKF":{"name":"serializeDownload(request:response:fileURL:error:)","abstract":"

    The function used to serialize the downloaded data in response handlers.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this serializer.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","abstract":"

    The function used to serialize the response data in response handlers.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestRetrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","abstract":"

    Determines whether the Request should be retried by calling the completion closure.

    ","parent_name":"RequestRetrier"},"Protocols/RequestAdapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","abstract":"

    Inspects and adapts the specified URLRequest in some manner and calls the completion handler with the AFResult.

    ","parent_name":"RequestAdapter"},"Protocols/UploadableConvertible.html#/s:9Alamofire21UploadableConvertibleP06createB0AA13UploadRequestC0B0OyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"UploadableConvertible"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP20sessionConfigurationSo012NSURLSessionE0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP11retryResult3for5dueTo10completionyAA0B0C_s5Error_pyAA05RetryE0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP05retryB0_9withDelayyAA0B0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RedirectHandler.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","abstract":"

    Determines how the HTTP redirect response should be redirected to the new request.

    ","parent_name":"RedirectHandler"},"Protocols/ParameterEncoding.html#/s:9Alamofire17ParameterEncodingP6encode_4with10Foundation10URLRequestVAA0G11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"ParameterEncoding"},"Protocols/ParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","abstract":"

    Encode the provided Encodable parameters into request.

    ","parent_name":"ParameterEncoder"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","abstract":"

    The DispatchQueue onto which Alamofire’s root CompositeEventMonitor will dispatch events. Defaults to .main.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Event called during URLSessionDelegate‘s urlSession(_:didBecomeInvalidWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didReceive:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:needNewBodyStream:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didFinishCollecting:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didCompleteWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:taskIsWaitingForConnectivity:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:didReceive:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:willCacheResponse:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didFinishDownloadingTo:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","abstract":"

    Event called when a URLRequest is first created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","abstract":"

    Event called when the attempt to create a URLRequest from a Request‘s original URLRequestConvertible value fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","abstract":"

    Event called when a RequestAdapter adapts the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","abstract":"

    Event called when a RequestAdapter fails to adapt the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","abstract":"

    Event called when a URLSessionTask subclass instance is created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","abstract":"

    Event called when a Request receives a URLSessionTaskMetrics value.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","abstract":"

    Event called when a Request fails due to an error created by Alamofire. e.g. When certificat pinning fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","abstract":"

    Event called when a Request‘s task completes, possibly with an error. A Request may recieve this event","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","abstract":"

    Event called when a Request is about to be retried.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","abstract":"

    Event called when a Request finishes and response serializers are being called.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","abstract":"

    Event called when a Request receives a resume call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is resumed.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","abstract":"

    Event called when a Request receives a suspend call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is suspended.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","abstract":"

    Event called when a Request receives a cancel call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is cancelled.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","abstract":"

    Event called when a DataRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest creates a DataResponse<Data?> value without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest calls a ResponseSerializer and creates a generic DataResponse<Value>.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","abstract":"

    Event called when an UploadRequest creates its Uploadable value, indicating the type of upload it represents.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","abstract":"

    Event called when an UploadRequest failes to create its Uploadable value due to an error.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","abstract":"

    Event called when an UploadRequest provides the InputStream from its Uploadable value. This only occurs if","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","abstract":"

    Event called when a DownloadRequest‘s URLSessionDownloadTask finishes and the temporary file has been moved.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","abstract":"

    Event called when a DownloadRequest‘s Destination closure is called and creates the destination URL the","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","abstract":"

    Event called when a DownloadRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest creates a DownloadResponse<URL?> without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest calls a DownloadResponseSerializer and creates a generic DownloadResponse<Value>

    ","parent_name":"EventMonitor"},"Protocols/CachedResponseHandler.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","abstract":"

    Determines whether the HTTP response should be stored in the cache.

    ","parent_name":"CachedResponseHandler"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP0B4TypeQa":{"name":"ExtendedType","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGmvpZ":{"name":"af","abstract":"

    Static Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGvp":{"name":"af","abstract":"

    Instance Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html":{"name":"AlamofireExtended","abstract":"

    Protocol describing the af extension points for Alamofire extended types.

    "},"Protocols/CachedResponseHandler.html":{"name":"CachedResponseHandler","abstract":"

    A type that handles whether the data task should store the HTTP response in the cache.

    "},"Protocols/EventMonitor.html":{"name":"EventMonitor","abstract":"

    Protocol outlining the lifetime events inside Alamofire. It includes both events received from the various"},"Protocols/ParameterEncoder.html":{"name":"ParameterEncoder","abstract":"

    A type that can encode any Encodable type into a URLRequest.

    "},"Protocols/ParameterEncoding.html":{"name":"ParameterEncoding","abstract":"

    A type used to define how a set of parameters are applied to a URLRequest.

    "},"Protocols/RedirectHandler.html":{"name":"RedirectHandler","abstract":"

    A type that handles how an HTTP redirect response from a remote server should be redirected to the new request.

    "},"Protocols/RequestDelegate.html":{"name":"RequestDelegate","abstract":"

    Protocol abstraction for Request‘s communication back to the SessionDelegate.

    "},"Protocols/UploadableConvertible.html":{"name":"UploadableConvertible","abstract":"

    Undocumented

    "},"Protocols.html#/s:9Alamofire17UploadConvertibleP":{"name":"UploadConvertible","abstract":"

    Undocumented

    "},"Protocols/RequestAdapter.html":{"name":"RequestAdapter","abstract":"

    A type that can inspect and optionally adapt a URLRequest in some manner if necessary.

    "},"Protocols/RequestRetrier.html":{"name":"RequestRetrier","abstract":"

    A type that determines whether a request should be retried after being executed by the specified session manager"},"Protocols/RequestInterceptor.html":{"name":"RequestInterceptor","abstract":"

    A type that intercepts requests to potentially adapt and retry them.

    "},"Protocols/DataResponseSerializerProtocol.html":{"name":"DataResponseSerializerProtocol","abstract":"

    The type to which all data response serializers must conform in order to serialize a response.

    "},"Protocols/DownloadResponseSerializerProtocol.html":{"name":"DownloadResponseSerializerProtocol","abstract":"

    The type to which all download response serializers must conform in order to serialize a response.

    "},"Protocols/ResponseSerializer.html":{"name":"ResponseSerializer","abstract":"

    A serializer that can handle both data and download responses.

    "},"Protocols/EmptyResponse.html":{"name":"EmptyResponse","abstract":"

    A protocol for a type representing an empty response. Use T.emptyValue to get an instance.

    "},"Protocols/DataDecoder.html":{"name":"DataDecoder","abstract":"

    Any type which can decode Data.

    "},"Protocols/ServerTrustEvaluating.html":{"name":"ServerTrustEvaluating","abstract":"

    A protocol describing the API used to evaluate server trusts.

    "},"Protocols/URLConvertible.html":{"name":"URLConvertible","abstract":"

    Types adopting the URLConvertible protocol can be used to construct URLs, which can then be used to construct"},"Protocols/URLRequestConvertible.html":{"name":"URLRequestConvertible","abstract":"

    Types adopting the URLRequestConvertible protocol can be used to safely construct URLRequests.

    "},"Functions.html#/s:9Alamofire2eeoiySbAA26NetworkReachabilityManagerC0cD6StatusO_AFtF":{"name":"==(_:_:)","abstract":"

    Returns whether the two network reachability status values are equal.

    "},"Extensions/URLComponents.html#/s:10Foundation13URLComponentsV9AlamofireE5asURLAA0E0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if the self‘s url is not nil, otherwise throws.

    ","parent_name":"URLComponents"},"Extensions/URL.html#/s:10Foundation3URLV9AlamofireE02asB0ACyKF":{"name":"asURL()","abstract":"

    Returns self.

    ","parent_name":"URL"},"Extensions/String.html#/s:SS9AlamofireE5asURL10Foundation0C0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if self can be used to initialize a URL instance, otherwise throws.

    ","parent_name":"String"},"Extensions/Array.html#/s:Sa9AlamofireAA21ServerTrustEvaluating_pRszlE8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"Array"},"Extensions/CharacterSet.html#/s:10Foundation12CharacterSetV9AlamofireE17afURLQueryAllowedACvpZ":{"name":"afURLQueryAllowed","abstract":"

    Creates a CharacterSet from RFC 3986 allowed characters.

    ","parent_name":"CharacterSet"},"Extensions/Notification.html#/s:10Foundation12NotificationV9AlamofireE7requestAD7RequestCSgvp":{"name":"request","abstract":"

    The Request contained by the instance’s userInfo, nil otherwise.

    ","parent_name":"Notification"},"Extensions/URLSessionConfiguration.html#/s:So25NSURLSessionConfigurationC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns httpAdditionalHeaders as HTTPHeaders.

    ","parent_name":"URLSessionConfiguration"},"Extensions/HTTPURLResponse.html#/s:So17NSHTTPURLResponseC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHeaderFields as HTTPHeaders.

    ","parent_name":"HTTPURLResponse"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE7headersAD11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHTTPHeaderFields as HTTPHeaders.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE02asB0ACyKF":{"name":"asURLRequest()","abstract":"

    Returns self.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE3url6method7headersAcD14URLConvertible_p_AD10HTTPMethodOAD11HTTPHeadersVSgtKcfc":{"name":"init(url:method:headers:)","abstract":"

    Creates an instance with the specified url, method, and headers.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE6methodAD10HTTPMethodOSgvp":{"name":"method","abstract":"

    Returns the httpMethod as Alamofire’s HTTPMethod type.

    ","parent_name":"URLRequest"},"Extensions/Error.html#/s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp":{"name":"asAFError","abstract":"

    Returns the instance cast as an AFError.

    ","parent_name":"Error"},"Extensions/Error.html":{"name":"Error"},"Extensions/URLRequest.html":{"name":"URLRequest"},"Extensions/HTTPURLResponse.html":{"name":"HTTPURLResponse"},"Extensions/URLSessionConfiguration.html":{"name":"URLSessionConfiguration"},"Extensions/Notification.html":{"name":"Notification"},"Extensions/CharacterSet.html":{"name":"CharacterSet"},"Extensions/Array.html":{"name":"Array"},"Extensions/String.html":{"name":"String"},"Extensions/URL.html":{"name":"URL"},"Extensions/URLComponents.html":{"name":"URLComponents"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO5retryyA2CmF":{"name":"retry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO14retryWithDelayyACSdcACmF":{"name":"retryWithDelay(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB0yA2CmF":{"name":"doNotRetry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB9WithErroryACs0G0_pcACmF":{"name":"doNotRetryWithError(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7connectyA2CmF":{"name":"connect","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO6deleteyA2CmF":{"name":"delete","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3getyA2CmF":{"name":"get","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4headyA2CmF":{"name":"head","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7optionsyA2CmF":{"name":"options","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5patchyA2CmF":{"name":"patch","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4postyA2CmF":{"name":"post","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3putyA2CmF":{"name":"put","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5traceyA2CmF":{"name":"trace","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtFZ":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlFZ":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtFZ":{"name":"request(_:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to execute the specified urlRequest.

    ","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlFZ":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to execute the specified urlRequest and download","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Creates a DownloadRequest using the SessionManager.default from the resumeData produced from a previous","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the fileURL specified","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using the SessionManager.default to upload the contents of the fileURL specificed","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV4hostSSvp":{"name":"host","abstract":"

    The host for which the evaluation was performed.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV5trustSo03SecD3Refavp":{"name":"trust","abstract":"

    The SecTrust value which was evaluated.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6statuss5Int32Vvp":{"name":"status","abstract":"

    The OSStatus of evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6resultSo03SecD10ResultTypeVvp":{"name":"result","abstract":"

    The result of the evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html":{"name":"Output","abstract":"

    The output of a server trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noRequiredEvaluatoryAESS_tcAEmF":{"name":"noRequiredEvaluator(host:)","abstract":"

    Undocumented

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noCertificatesFoundyA2EmF":{"name":"noCertificatesFound","abstract":"

    No certificates were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO17noPublicKeysFoundyA2EmF":{"name":"noPublicKeysFound","abstract":"

    No public keys were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23policyApplicationFailedyAESo03SecD3Refa_So0j6PolicyK0as5Int32VtcAEmF":{"name":"policyApplicationFailed(trust:policy:status:)","abstract":"

    During evaluation, application of the associated SecPolicy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO31settingAnchorCertificatesFailedyAEs5Int32V_SaySo17SecCertificateRefaGtcAEmF":{"name":"settingAnchorCertificatesFailed(status:certificates:)","abstract":"

    During evaluation, setting the associated anchor certificates failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO30revocationPolicyCreationFailedyA2EmF":{"name":"revocationPolicyCreationFailed","abstract":"

    During evaluation, creation of the revocation policy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23defaultEvaluationFailedyA2E6OutputV_tcAEmF":{"name":"defaultEvaluationFailed(output:)","abstract":"

    Default evaluation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO20hostValidationFailedyA2E6OutputV_tcAEmF":{"name":"hostValidationFailed(output:)","abstract":"

    Host validation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO21revocationCheckFailedyA2E6OutputV_AA010RevocationD9EvaluatorC7OptionsVtcAEmF":{"name":"revocationCheckFailed(output:options:)","abstract":"

    Revocation check failed with the associated Output and options.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO24certificatePinningFailedyAESS_So03SecD3RefaSaySo0j11CertificateK0aGAKtcAEmF":{"name":"certificatePinningFailed(host:trust:pinnedCertificates:serverCertificates:)","abstract":"

    Certificate pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO22publicKeyPinningFailedyAESS_So03SecD3RefaSaySo0khL0aGAKtcAEmF":{"name":"publicKeyPinningFailed(host:trust:pinnedKeys:serverKeys:)","abstract":"

    Public key pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO24inputDataNilOrZeroLengthyA2EmF":{"name":"inputDataNilOrZeroLength","abstract":"

    The server response contained no data or the data was zero length.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO12inputFileNilyA2EmF":{"name":"inputFileNil","abstract":"

    The file containing the server response did not exist.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO19inputFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"inputFileReadFailed(at:)","abstract":"

    The file containing the server response could not be read from the associated URL.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO06stringD6FailedyAESS10FoundationE8EncodingV_tcAEmF":{"name":"stringSerializationFailed(encoding:)","abstract":"

    String serialization failed using the provided String.Encoding.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonSerializationFailed(error:)","abstract":"

    JSON serialization failed with an underlying system error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO14decodingFailedyAEs5Error_p_tcAEmF":{"name":"decodingFailed(error:)","abstract":"

    A DataDecoder failed to decode the response due to the associated Error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO012invalidEmptyC0yAESS_tcAEmF":{"name":"invalidEmptyResponse(type:)","abstract":"

    Generic serialization failed for an empty response that wasn’t type Empty but instead the associated type.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO43responseSerializerAddedAfterRequestFinishedyA2EmF":{"name":"responseSerializerAddedAfterRequestFinished","abstract":"

    A response serializer was added to the request after the request was already finished.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO11dataFileNilyA2EmF":{"name":"dataFileNil","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18dataFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"dataFileReadFailed(at:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18missingContentTypeyAESaySSG_tcAEmF":{"name":"missingContentType(acceptableContentTypes:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO23unacceptableContentTypeyAESaySSG_SStcAEmF":{"name":"unacceptableContentType(acceptableContentTypes:responseContentType:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO22unacceptableStatusCodeyAESi_tcAEmF":{"name":"unacceptableStatusCode(code:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO18bodyPartURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFilenameInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFilenameInvalid(in:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO24bodyPartFileNotReachableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileNotReachable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartFileNotReachableWithErroryAE10Foundation3URLV_s0M0_ptcAEmF":{"name":"bodyPartFileNotReachableWithError(atURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFileIsDirectoryyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileIsDirectory(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO28bodyPartFileSizeNotAvailableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileSizeNotAvailable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO36bodyPartFileSizeQueryFailedWithErroryAE10Foundation3URLV_s0N0_ptcAEmF":{"name":"bodyPartFileSizeQueryFailedWithError(forURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartInputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartInputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO26outputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO29outputStreamFileAlreadyExistsyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamFileAlreadyExists(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO22outputStreamURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23outputStreamWriteFailedyAEs5Error_p_tcAEmF":{"name":"outputStreamWriteFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO21inputStreamReadFailedyAEs5Error_p_tcAEmF":{"name":"inputStreamReadFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO3urlyA2GmF":{"name":"url","abstract":"

    The URL was missing or unable to be extracted from the passed URLRequest or during encoding.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO10httpMethodyAGSS_tcAGmF":{"name":"httpMethod(rawValue:)","abstract":"

    The HTTPMethod could not be extracted from the passed URLRequest.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html":{"name":"RequiredComponent","abstract":"

    Possible missing components.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO24missingRequiredComponentyA2E0hI0OcAEmF":{"name":"missingRequiredComponent(_:)","abstract":"

    A RequiredComponent was missing during encoding.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO13encoderFailedyAEs5Error_p_tcAEmF":{"name":"encoderFailed(error:)","abstract":"

    The underlying encoder failed with the associated error.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO10missingURLyA2EmF":{"name":"missingURL","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonEncodingFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html":{"name":"ParameterEncodingFailureReason","abstract":"

    The underlying reason the parameter encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ParameterEncoderFailureReason.html":{"name":"ParameterEncoderFailureReason","abstract":"

    Underlying reason the parameter encoder error occured.

    ","parent_name":"AFError"},"Enums/AFError/MultipartEncodingFailureReason.html":{"name":"MultipartEncodingFailureReason","abstract":"

    The underlying reason the multipart encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseValidationFailureReason.html":{"name":"ResponseValidationFailureReason","abstract":"

    The underlying reason the response validation error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseSerializationFailureReason.html":{"name":"ResponseSerializationFailureReason","abstract":"

    The underlying reason the response serialization error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ServerTrustFailureReason.html":{"name":"ServerTrustFailureReason","abstract":"

    Underlying reason a server trust evaluation error occured.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20sessionDeinitializedyA2CmF":{"name":"sessionDeinitialized","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18sessionInvalidatedyACs5Error_pSg_tcACmF":{"name":"sessionInvalidated(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19explicitlyCancelledyA2CmF":{"name":"explicitlyCancelled","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO10invalidURLyAcA14URLConvertible_p_tcACmF":{"name":"invalidURL(url:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23parameterEncodingFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22parameterEncoderFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncoderFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23multipartEncodingFailedyA2C09MultipartD13FailureReasonO_tcACmF":{"name":"multipartEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23requestAdaptationFailedyACs5Error_p_tcACmF":{"name":"requestAdaptationFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24responseValidationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseValidationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27responseSerializationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseSerializationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27serverTrustEvaluationFailedyA2C06ServerD13FailureReasonO_tcACmF":{"name":"serverTrustEvaluationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18requestRetryFailedyACs5Error_p_sAE_ptcACmF":{"name":"requestRetryFailed(retryError:originalError:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27isSessionDeinitializedErrorSbvp":{"name":"isSessionDeinitializedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isSessionInvalidatedErrorSbvp":{"name":"isSessionInvalidatedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO26isExplicitlyCancelledErrorSbvp":{"name":"isExplicitlyCancelledError","abstract":"

    Returns whether the instance is .explicitlyCancelled.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO17isInvalidURLErrorSbvp":{"name":"isInvalidURLError","abstract":"

    Returns whether the instance is .invalidURL.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isParameterEncodingErrorSbvp":{"name":"isParameterEncodingError","abstract":"

    Returns whether the instance is .parameterEncodingFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23isParameterEncoderErrorSbvp":{"name":"isParameterEncoderError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isMultipartEncodingErrorSbvp":{"name":"isMultipartEncodingError","abstract":"

    Returns whether the instance is .multipartEncodingFailed. When true, the url and underlyingError","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isRequestAdaptationErrorSbvp":{"name":"isRequestAdaptationError","abstract":"

    Returns whether the instance is .requestAdaptationFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isResponseValidationErrorSbvp":{"name":"isResponseValidationError","abstract":"

    Returns whether the instance is .responseValidationFailed. When true, the acceptableContentTypes,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isResponseSerializationErrorSbvp":{"name":"isResponseSerializationError","abstract":"

    Returns whether the instance is .responseSerializationFailed. When true, the failedStringEncoding and","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isServerTrustEvaluationErrorSbvp":{"name":"isServerTrustEvaluationError","abstract":"

    Returns whether the instance is .serverTrustEvaluationFailed.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19isRequestRetryErrorSbvp":{"name":"isRequestRetryError","abstract":"

    Returns whether the instance is requestRetryFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO14urlConvertibleAA14URLConvertible_pSgvp":{"name":"urlConvertible","abstract":"

    The URLConvertible associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO3url10Foundation3URLVSgvp":{"name":"url","abstract":"

    The URL associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO15underlyingErrors0D0_pSgvp":{"name":"underlyingError","abstract":"

    The underlying Error responsible for generating the failure associated with .sessionInvalidated,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22acceptableContentTypesSaySSGSgvp":{"name":"acceptableContentTypes","abstract":"

    The acceptable Content-Types of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19responseContentTypeSSSgvp":{"name":"responseContentType","abstract":"

    The response Content-Type of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO12responseCodeSiSgvp":{"name":"responseCode","abstract":"

    The response code of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20failedStringEncodingSS10FoundationE0E0VSgvp":{"name":"failedStringEncoding","abstract":"

    The String.Encoding associated with a failed .stringResponse() call.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"AFError"},"Enums/AFError.html":{"name":"AFError","abstract":"

    AFError is the error type returned by Alamofire. It encompasses a few different types of errors, each with"},"Enums/AF.html":{"name":"AF","abstract":"

    Global namespace containing API for the default Session instance.

    "},"Enums/HTTPMethod.html":{"name":"HTTPMethod","abstract":"

    HTTP method definitions.

    "},"Enums/RetryResult.html":{"name":"RetryResult","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html#/s:9Alamofire15SessionDelegateC11fileManagerACSo06NSFileE0C_tcfc":{"name":"init(fileManager:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:didBecomeInvalidWithError:":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didReceiveChallenge:completionHandler:":{"name":"urlSession(_:task:didReceive:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:needNewBodyStream:":{"name":"urlSession(_:task:needNewBodyStream:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didFinishCollectingMetrics:":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didCompleteWithError:":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:taskIsWaitingForConnectivity:":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:didReceiveData:":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:willCacheResponse:completionHandler:":{"name":"urlSession(_:dataTask:willCacheResponse:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didFinishDownloadingToURL:":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/Session.html#/s:9Alamofire7SessionC7defaultACvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8delegateAA0B8DelegateCvp":{"name":"delegate","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC9rootQueueSo17OS_dispatch_queueCvp":{"name":"rootQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12requestQueueSo17OS_dispatch_queueCvp":{"name":"requestQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11interceptorAA18RequestInterceptor_pSgvp":{"name":"interceptor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serverTrustManagerAA06ServerdE0CSgvp":{"name":"serverTrustManager","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7sessionSo12NSURLSessionCvp":{"name":"session","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12eventMonitorAA014CompositeEventD0Cvp":{"name":"eventMonitor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20defaultEventMonitorsSayAA0D7Monitor_pGvp":{"name":"defaultEventMonitors","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC24startRequestsImmediatelySbvp":{"name":"startRequestsImmediately","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7session8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo12NSURLSessionC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(session:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13configuration8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo25NSURLSessionConfigurationC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(configuration:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtF":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlF":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtF":{"name":"request(_:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlF":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtF":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20sessionConfigurationSo012NSURLSessionD0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11retryResult3for5dueTo10completionyAA7RequestC_s5Error_pyAA05RetryD0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12retryRequest_9withDelayyAA0D0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request3forAA7RequestCSgSo16NSURLSessionTaskC_tF":{"name":"request(for:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC23didGatherMetricsForTaskyySo012NSURLSessionG0CF":{"name":"didGatherMetricsForTask(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15didCompleteTaskyySo012NSURLSessionE0CF":{"name":"didCompleteTask(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC10credential3for2inSo15NSURLCredentialCSgSo16NSURLSessionTaskC_So20NSURLProtectionSpaceCtF":{"name":"credential(for:in:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC017cancelRequestsForB12Invalidation4withys5Error_pSg_tF":{"name":"cancelRequestsForSessionInvalidation(with:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/DisabledEvaluator.html#/s:9Alamofire17DisabledEvaluatorCACycfc":{"name":"init()","abstract":"

    Undocumented

    ","parent_name":"DisabledEvaluator"},"Classes/DisabledEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DisabledEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire23CompositeTrustEvaluatorC10evaluatorsACSayAA06ServerC10Evaluating_pG_tcfc":{"name":"init(evaluators:)","abstract":"

    Creates a CompositeTrustEvaluator.

    ","parent_name":"CompositeTrustEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"CompositeTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire24PublicKeysTrustEvaluatorC4keys24performDefaultValidation12validateHostACSaySo9SecKeyRefaG_S2btcfc":{"name":"init(keys:performDefaultValidation:validateHost:)","abstract":"

    Creates a PublicKeysTrustEvaluator.

    ","parent_name":"PublicKeysTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PublicKeysTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire32PinnedCertificatesTrustEvaluatorC12certificates016acceptSelfSignedC024performDefaultValidation12validateHostACSaySo17SecCertificateRefaG_S3btcfc":{"name":"init(certificates:acceptSelfSignedCertificates:performDefaultValidation:validateHost:)","abstract":"

    Creates a PinnedCertificatesTrustEvaluator.

    ","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3crlAEvpZ":{"name":"crl","abstract":"

    Perform revocation checking using the CRL (Certification Revocation List) method.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV21networkAccessDisabledAEvpZ":{"name":"networkAccessDisabled","abstract":"

    Consult only locally cached replies; do not use network access.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV4ocspAEvpZ":{"name":"ocsp","abstract":"

    Perform revocation checking using OCSP (Online Certificate Status Protocol).

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV9preferCRLAEvpZ":{"name":"preferCRL","abstract":"

    Prefer CRL revocation checking over OCSP; by default, OCSP is preferred.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV23requirePositiveResponseAEvpZ":{"name":"requirePositiveResponse","abstract":"

    Require a positive response to pass the policy. If the flag is not set, revocation checking is done on a","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3anyAEvpZ":{"name":"any","abstract":"

    Perform either OCSP or CRL checking. The checking is performed according to the method(s) specified in the","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueSuvp":{"name":"rawValue","abstract":"

    The raw value of the option.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueAESu_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates an Options value with the given CFOptionFlags.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html":{"name":"Options","abstract":"

    Represents the options to be use when evaluating the status of a certificate.","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire24RevocationTrustEvaluatorC24performDefaultValidation12validateHost7optionsACSb_SbAC7OptionsVtcfc":{"name":"init(performDefaultValidation:validateHost:options:)","abstract":"

    Creates a RevocationTrustEvaluator.

    ","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"RevocationTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21DefaultTrustEvaluatorC12validateHostACSb_tcfc":{"name":"init(validateHost:)","abstract":"

    Creates a DefaultTrustEvalutor.

    ","parent_name":"DefaultTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DefaultTrustEvaluator"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluatedSbvp":{"name":"allHostsMustBeEvaluated","abstract":"

    Determines whether all hosts for this ServerTrustManager must be evaluated. Defaults to true.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC10evaluatorsSDySSAA0bC10Evaluating_pGvp":{"name":"evaluators","abstract":"

    The dictionary of policies mapped to a particular host.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluated10evaluatorsACSb_SDySSAA0bC10Evaluating_pGtcfc":{"name":"init(allHostsMustBeEvaluated:evaluators:)","abstract":"

    Initializes the ServerTrustManager instance with the given evaluators.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC06serverC9Evaluator7forHostAA0bC10Evaluating_pSgSS_tKF":{"name":"serverTrustEvaluator(forHost:)","abstract":"

    Returns the ServerTrustEvaluating value for the given host, if one is set.

    ","parent_name":"ServerTrustManager"},"Classes/ConnectionLostRetryPolicy.html#/s:9Alamofire25ConnectionLostRetryPolicyC10retryLimit22exponentialBackoffBase0hI5Scale20retryableHTTPMethodsACSu_SuSdShyAA10HTTPMethodOGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:)","abstract":"

    Creates a ConnectionLostRetryPolicy instance from the specified parameters.

    ","parent_name":"ConnectionLostRetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC07defaultB5LimitSuvpZ":{"name":"defaultRetryLimit","abstract":"

    The default retry limit for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultExponentialBackoffBaseSuvpZ":{"name":"defaultExponentialBackoffBase","abstract":"

    The default exponential backoff base for retry policies (must be a minimum of 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC30defaultExponentialBackoffScaleSdvpZ":{"name":"defaultExponentialBackoffScale","abstract":"

    The default exponential backoff scale for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC27defaultRetryableHTTPMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultRetryableHTTPMethods","abstract":"

    The default HTTP methods to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC31defaultRetryableHTTPStatusCodesShySiGvpZ":{"name":"defaultRetryableHTTPStatusCodes","abstract":"

    The default HTTP status codes to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultRetryableURLErrorCodesShy10Foundation0F0V4CodeVGvpZ":{"name":"defaultRetryableURLErrorCodes","abstract":"

    The default URL error codes to retry.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimitSuvp":{"name":"retryLimit","abstract":"

    The total number of times the request is allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22exponentialBackoffBaseSuvp":{"name":"exponentialBackoffBase","abstract":"

    The base of the exponential backoff policy (should always be greater than or equal to 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC23exponentialBackoffScaleSdvp":{"name":"exponentialBackoffScale","abstract":"

    The scale of the exponential backoff.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC20retryableHTTPMethodsShyAA10HTTPMethodOGvp":{"name":"retryableHTTPMethods","abstract":"

    The HTTP methods that are allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC24retryableHTTPStatusCodesShySiGvp":{"name":"retryableHTTPStatusCodes","abstract":"

    The HTTP status codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22retryableURLErrorCodesShy10Foundation0E0V4CodeVGvp":{"name":"retryableURLErrorCodes","abstract":"

    The URL error codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimit22exponentialBackoffBase0fG5Scale20retryableHTTPMethods0J15HTTPStatusCodes0j8URLErrorM0ACSu_SuSdShyAA10HTTPMethodOGShySiGShy10Foundation0N0V4CodeVGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:retryableHTTPStatusCodes:retryableURLErrorCodes:)","abstract":"

    Creates an ExponentialBackoffRetryPolicy from the specified parameters.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RetryPolicy"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoderAA11DataDecoder_pvp":{"name":"decoder","abstract":"

    The JSONDecoder instance used to decode responses.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoder05emptyC5Codes0F14RequestMethodsACyxGAA11DataDecoder_p_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(decoder:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the values provided.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DecodableResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7optionsSo20NSJSONReadingOptionsVvp":{"name":"options","abstract":"

    JSONSerialization.ReadingOptions used when serializing a response.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC18emptyResponseCodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7options18emptyResponseCodes0E14RequestMethodsACSo20NSJSONReadingOptionsV_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(options:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"JSONResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encodingSS10FoundationE8EncodingVSgvp":{"name":"encoding","abstract":"

    Optional string encoding used to validate the response.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encoding05emptyC5Codes0F14RequestMethodsACSS10FoundationE8EncodingVSg_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(encoding:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"StringResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5Codes0E14RequestMethodsACShySiG_ShyAA10HTTPMethodOGtcfc":{"name":"init(emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the provided values.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DataResponseSerializer"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adaptersSayAA14RequestAdapter_pGvp":{"name":"adapters","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8retriersSayAA14RequestRetrier_pGvp":{"name":"retriers","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC12adaptHandler05retryD0ACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAHs5Error_pGctc_yAA7RequestC_AJsAM_pyAA05RetryI0Octctcfc":{"name":"init(adaptHandler:retryHandler:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC7adapter7retrierAcA14RequestAdapter_p_AA0E7Retrier_ptcfc":{"name":"init(adapter:retrier:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adapters8retriersACSayAA14RequestAdapter_pG_SayAA0E7Retrier_pGtcfc":{"name":"init(adapters:retriers:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Interceptor"},"Classes/Retrier.html#/s:9Alamofire7RetrierCyACyAA7RequestC_AA7SessionCs5Error_pyAA11RetryResultOctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Retrier"},"Classes/Retrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Retrier"},"Classes/Adapter.html#/s:9Alamofire7AdapterCyACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAFs5Error_pGctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Adapter"},"Classes/Adapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Adapter"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4datayAE10Foundation4DataVcAEmF":{"name":"data(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4fileyAE10Foundation3URLV_SbtcAEmF":{"name":"file(_:shouldRemove:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO6streamyAESo13NSInputStreamCcAEmF":{"name":"stream(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO06createD0AEyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html":{"name":"Uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC6uploadAA21UploadableConvertible_pvp":{"name":"upload","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC10uploadableAC10UploadableOSgvp":{"name":"uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC7cleanupyyF":{"name":"cleanup()","parent_name":"UploadRequest"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO7requestyAeA21URLRequestConvertible_pcAEmF":{"name":"request(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO10resumeDatayAE10Foundation0F0VcAEmF":{"name":"resumeData(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV29createIntermediateDirectoriesAEvpZ":{"name":"createIntermediateDirectories","abstract":"

    A DownloadOptions flag that creates intermediate directories for the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV18removePreviousFileAEvpZ":{"name":"removePreviousFile","abstract":"

    A DownloadOptions flag that removes a previous file from the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueSivp":{"name":"rawValue","abstract":"

    Returns the raw bitmask value of the option and satisfies the RawRepresentable protocol.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueAESi_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates a DownloadRequest.Options instance with the specified raw value.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html":{"name":"Options","abstract":"

    A collection of options to be executed prior to moving a downloaded file from the temporary URL to the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC11Destinationa":{"name":"Destination","abstract":"

    A closure executed once a download request has successfully completed in order to determine where to move the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC09suggestedB11Destination3for2in7options10Foundation3URLV011destinationJ0_AC7OptionsVAGtAJ_So17NSHTTPURLResponseCtcSo21NSSearchPathDirectoryV_So0nO10DomainMaskVAMtFZ":{"name":"suggestedDownloadDestination(for:in:options:)","abstract":"

    Creates a download file destination closure which uses the default file manager to move the temporary file to a","parent_name":"DownloadRequest"},"Classes/DownloadRequest/Downloadable.html":{"name":"Downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12downloadableAC12DownloadableOvp":{"name":"downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC4task13forResumeData5usingSo16NSURLSessionTaskC10Foundation0G0V_So0I0CtF":{"name":"task(forResumeData:using:)","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC6cancelACXDyF":{"name":"cancel()","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI3URLVSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation3URLVSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseData5queue17completionHandlerACXDSo012OS_dispatch_F0C_yAA0B8ResponseVy10Foundation0E0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response, a temporary URL and a","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DownloadRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC11convertibleAA21URLRequestConvertible_pvp":{"name":"convertible","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI0B0VSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC08responseB05queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC17responseDecodable5queue7decoder17completionHandlerACXDSo012OS_dispatch_F0C_AA0B7Decoder_pyAA0B8ResponseVyxGctSeRzlF":{"name":"responseDecodable(queue:decoder:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response and data, and returns whether the","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DataRequest"},"Classes/URLEncodedFormEncoder/Error.html#/s:9Alamofire21URLEncodedFormEncoderC5ErrorO17invalidRootObjectyAESScAEmF":{"name":"invalidRootObject(_:)","abstract":"

    An invalid root object was created by the encoder. Only keyed values are valid.

    ","parent_name":"Error"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO14percentEscapedyA2EmF":{"name":"percentEscaped","abstract":"

    Encodes spaces according to normal percent escaping rules (%20).

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO12plusReplacedyA2EmF":{"name":"plusReplaced","abstract":"

    Encodes spaces as +,

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    An empty set of square brackets ([]) are sppended to the key for every value.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    No brackets are appended to the key and the key is encoded as is.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Encodes true as 1, false as 0.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Encodes true as true, false as false.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html":{"name":"SpaceEncoding","abstract":"

    Configures how spaces are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/Error.html":{"name":"Error","abstract":"

    URLEncodedFormEncoder error.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncodingAC05ArrayF0Ovp":{"name":"arrayEncoding","abstract":"

    The ArrayEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC12boolEncodingAC04BoolF0Ovp":{"name":"boolEncoding","abstract":"

    The BoolEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13spaceEncodingAC05SpaceF0Ovp":{"name":"spaceEncoding","abstract":"

    The SpaceEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC17allowedCharacters10Foundation12CharacterSetVvp":{"name":"allowedCharacters","abstract":"

    The CharacterSet of allowed characters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncoding04boolF005spaceF017allowedCharactersA2C05ArrayF0O_AC04BoolF0OAC05SpaceF0O10Foundation12CharacterSetVtcfc":{"name":"init(arrayEncoding:boolEncoding:spaceEncoding:allowedCharacters:)","abstract":"

    Creates an instance from the supplied parameters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodeySSSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as a URL form encoded String.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodey10Foundation4DataVSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as Data. This is performed by first creating an encoded String and then returning the","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Applies the encoded query string to any existing query string for .get, .head, and .delete request.","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Applies the encoded query string to any existing query string from the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Applies the encoded query string to the httpBody of the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html":{"name":"Destination","abstract":"

    Defines where the URL-encoded string should be set for each URLRequest.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoderAA0bcE0Cvp":{"name":"encoder","abstract":"

    The URLEncodedFormEncoder to use.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The Destination for the URL-encoded string.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoder11destinationAcA0bcE0C_AC11DestinationOtcfc":{"name":"init(encoder:destination:)","abstract":"

    Creates an instance with the provided URLEncodedFormEncoder instance and Destination value.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"URLEncodedFormParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .prettyPrinted.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC10sortedKeysACvpZ":{"name":"sortedKeys","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .sortedKeys.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoder10Foundation11JSONEncoderCvp":{"name":"encoder","abstract":"

    JSONEncoder used to encode parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoderAC10Foundation11JSONEncoderC_tcfc":{"name":"init(encoder:)","abstract":"

    Creates an instance with the provided JSONEncoder.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"JSONParameterEncoder"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"AlamofireNotifications"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO11initializedyA2EmF":{"name":"initialized","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO7resumedyA2EmF":{"name":"resumed","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9suspendedyA2EmF":{"name":"suspended","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9cancelledyA2EmF":{"name":"cancelled","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO8finishedyA2EmF":{"name":"finished","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html":{"name":"State","abstract":"

    State of the Request, with managed transitions between states set when calling resume(), suspend(), or","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id10Foundation4UUIDVvp":{"name":"id","abstract":"

    UUID prividing a unique identifier for the Request, used in the Hashable and Equatable conformances.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15underlyingQueueSo17OS_dispatch_queueCvp":{"name":"underlyingQueue","abstract":"

    The serial queue for all internal async actions.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    The queue used for all serialization actions. By default it’s a serial queue that targets underlyingQueue.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12eventMonitorAA05EventD0_pSgvp":{"name":"eventMonitor","abstract":"

    EventMonitor used for event callbacks.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11interceptorAA0B11Interceptor_pSgvp":{"name":"interceptor","abstract":"

    The Request‘s interceptor.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8delegateAA0B8Delegate_pSgvp":{"name":"delegate","abstract":"

    The Request‘s delegate.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5stateAC5StateOvp":{"name":"state","abstract":"

    State of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13isInitializedSbvp":{"name":"isInitialized","abstract":"

    Returns whether state is .initialized.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9isResumedSbvp":{"name":"isResumed","abstract":"

    Returns whether state is.resumed`.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isSuspendedSbvp":{"name":"isSuspended","abstract":"

    Returns whether state is .suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isCancelledSbvp":{"name":"isCancelled","abstract":"

    Returns whether state is .cancelled.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10isFinishedSbvp":{"name":"isFinished","abstract":"

    Returns whether state is .finished.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15ProgressHandlera":{"name":"ProgressHandler","abstract":"

    Closure type executed when monitoring the upload or download progress of a request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgressSo10NSProgressCvp":{"name":"uploadProgress","abstract":"

    Progress of the upload of the body of the executed URLRequest. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgressSo10NSProgressCvp":{"name":"downloadProgress","abstract":"

    Progress of the download of any response data. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10credentialSo15NSURLCredentialCSgvp":{"name":"credential","abstract":"

    URLCredential used for authentication challenges. Created by calling one of the authenticate methods.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8requestsSay10Foundation10URLRequestVGvp":{"name":"requests","abstract":"

    All URLRequests created on behalf of the Request, including original and adapted requests.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC05firstB010Foundation10URLRequestVSgvp":{"name":"firstRequest","abstract":"

    First URLRequest created on behalf of the Request. May not be the first one actually executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC04lastB010Foundation10URLRequestVSgvp":{"name":"lastRequest","abstract":"

    Last URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    Current URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC17performedRequestsSay10Foundation10URLRequestVGvp":{"name":"performedRequests","abstract":"

    URLRequests from all of the URLSessionTasks executed on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    HTTPURLResponse received from the server, if any. If the Request was retried, this is the response of the","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5tasksSaySo16NSURLSessionTaskCGvp":{"name":"tasks","abstract":"

    All URLSessionTasks created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9firstTaskSo012NSURLSessionD0CSgvp":{"name":"firstTask","abstract":"

    First URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8lastTaskSo012NSURLSessionD0CSgvp":{"name":"lastTask","abstract":"

    Last URLSessionTask crated on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC4taskSo16NSURLSessionTaskCSgvp":{"name":"task","abstract":"

    Current URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10allMetricsSaySo016NSURLSessionTaskD0CGvp":{"name":"allMetrics","abstract":"

    All URLSessionTaskMetrics gathered on behalf of the Request. Should correspond to the tasks created.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12firstMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"firstMetrics","abstract":"

    First URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11lastMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"lastMetrics","abstract":"

    Last URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    Current URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10retryCountSivp":{"name":"retryCount","abstract":"

    Number of times the Request has been retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5errors5Error_pSgvp":{"name":"error","abstract":"

    Error returned from Alamofire internally, from the network request directly, or any validators executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id15underlyingQueue013serializationE012eventMonitor11interceptor8delegateAC10Foundation4UUIDV_So17OS_dispatch_queueCAnA05EventH0_pSgAA0B11Interceptor_pSgAA0B8Delegate_ptcfc":{"name":"init(id:underlyingQueue:serializationQueue:eventMonitor:interceptor:delegate:)","abstract":"

    Default initializer for the Request superclass.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6cancelACXDyF":{"name":"cancel()","abstract":"

    Cancels the Request. Once cancelled, a Request can no longer be resumed or suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7suspendACXDyF":{"name":"suspend()","abstract":"

    Suspends the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6resumeACXDyF":{"name":"resume()","abstract":"

    Resumes the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate8username8password11persistenceACXDSS_SSSo26NSURLCredentialPersistenceVtF":{"name":"authenticate(username:password:persistence:)","abstract":"

    Associates a credential using the provided values with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate4withACXDSo15NSURLCredentialC_tF":{"name":"authenticate(with:)","abstract":"

    Associates the provided credential with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"downloadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is read from the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"uploadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is sent to the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8redirect5usingACXDAA15RedirectHandler_p_tF":{"name":"redirect(using:)","abstract":"

    Sets the redirect handler for the Request which will be used if a redirect response is encountered.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13cacheResponse5usingACXDAA06CachedD7Handler_p_tF":{"name":"cacheResponse(using:)","abstract":"

    Sets the cached response handler for the Request which will be used when attempting to cache a response.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7cleanupyyF":{"name":"cleanup()","abstract":"

    Final cleanup step executed when a Request finishes response serialization.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didResumeNotificationSo18NSNotificationNameavpZ":{"name":"didResumeNotification","abstract":"

    Posted when a Request is resumed. The Notification contains the resumed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC22didSuspendNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendNotification","abstract":"

    Posted when a Request is suspended. The Notification contains the suspended Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didCancelNotificationSo18NSNotificationNameavpZ":{"name":"didCancelNotification","abstract":"

    Posted when a Request is cancelled. The Notification contains the cancelled Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didFinishNotificationSo18NSNotificationNameavpZ":{"name":"didFinishNotification","abstract":"

    Posted when a Request is finished. The Notification contains the completed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didResumeTaskNotificationSo18NSNotificationNameavpZ":{"name":"didResumeTaskNotification","abstract":"

    Posted when a URLSessionTask is resumed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC26didSuspendTaskNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendTaskNotification","abstract":"

    Posted when a URLSessionTask is suspended. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didCancelTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCancelTaskNotification","abstract":"

    Posted when a URLSessionTask is cancelled. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC27didCompleteTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCompleteTaskNotification","abstract":"

    Posted when a URLSessionTask is completed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"Request"},"Classes/Request.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11descriptionSSvp":{"name":"description","abstract":"

    A textual representation of this instance, including the HTTPMethod and URL if the URLRequest has been","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    A textual representation of this instance in the form of a cURL command.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16ValidationResulta":{"name":"ValidationResult","abstract":"

    Used to represent whether a validation succeeded or failed.

    ","parent_name":"Request"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO14ethernetOrWiFiyA2EmF":{"name":"ethernetOrWiFi","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF":{"name":"wwan","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO7unknownyA2EmF":{"name":"unknown","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO12notReachableyA2EmF":{"name":"notReachable","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO9reachableyAeC14ConnectionTypeOcAEmF":{"name":"reachable(_:)","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html":{"name":"NetworkReachabilityStatus","abstract":"

    Defines the various states of network reachability.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager/ConnectionType.html":{"name":"ConnectionType","abstract":"

    Defines the various connection types detected by reachability flags.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8Listenera":{"name":"Listener","abstract":"

    A closure executed when the network reachability status changes. The closure takes a single argument: the","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC11isReachableSbvp":{"name":"isReachable","abstract":"

    Whether the network is currently reachable.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC17isReachableOnWWANSbvp":{"name":"isReachableOnWWAN","abstract":"

    Whether the network is currently reachable over the WWAN interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp":{"name":"isReachableOnEthernetOrWiFi","abstract":"

    Whether the network is currently reachable over Ethernet or WiFi interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC07networkC6StatusAC0bcF0Ovp":{"name":"networkReachabilityStatus","abstract":"

    The current network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp":{"name":"listenerQueue","abstract":"

    The dispatch queue to execute the listener closure on.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8listeneryAC0bC6StatusOcSgvp":{"name":"listener","abstract":"

    A closure executed when the network reachability status changes.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC5flagsSo09SCNetworkC5FlagsVSgvp":{"name":"flags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkcF0Vvp":{"name":"previousFlags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC4hostACSgSS_tcfc":{"name":"init(host:)","abstract":"

    Creates a NetworkReachabilityManager instance with the specified host.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCACSgycfc":{"name":"init()","abstract":"

    Creates a NetworkReachabilityManager instance that monitors the address 0.0.0.0.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC14startListeningSbyF":{"name":"startListening()","abstract":"

    Starts listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13stopListeningyyF":{"name":"stopListening()","abstract":"

    Stops listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC23encodingMemoryThresholds6UInt64VvpZ":{"name":"encodingMemoryThreshold","abstract":"

    Default memory threshold used when encoding MultipartFormData, in bytes.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11contentTypeSSvp":{"name":"contentType","abstract":"

    The Content-Type header value containing the boundary used to generate the multipart/form-data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC13contentLengths6UInt64Vvp":{"name":"contentLength","abstract":"

    The content length of all body parts used to generate the multipart/form-data not including the boundaries.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC8boundarySSvp":{"name":"boundary","abstract":"

    The boundary used to separate the body parts in the encoded form data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11fileManager8boundaryACSo06NSFileF0C_SSSgtcfc":{"name":"init(fileManager:boundary:)","abstract":"

    Creates a multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation0D0V_S2SSgAKtF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the data and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withNamey10Foundation3URLV_SStF":{"name":"append(_:withName:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation3URLV_S3StF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength4name8fileName8mimeTypeySo13NSInputStreamC_s6UInt64VS3StF":{"name":"append(_:withLength:name:fileName:mimeType:)","abstract":"

    Creates a body part from the stream and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength7headersySo13NSInputStreamC_s6UInt64VAA11HTTPHeadersVtF":{"name":"append(_:withLength:headers:)","abstract":"

    Creates a body part with the headers, stream and length and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6encode10Foundation0D0VyKF":{"name":"encode()","abstract":"

    Encodes all the appended body parts into a single Data value.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC012writeEncodedD02toy10Foundation3URLV_tKF":{"name":"writeEncodedData(to:)","abstract":"

    Writes the appended body parts into the given file URL.

    ","parent_name":"MultipartFormData"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtcSgvp":{"name":"sessionDidBecomeInvalidWithError","abstract":"

    Closure called on the urlSession(_:didBecomeInvalidWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0I4TaskCSo019NSURLAuthenticationH0CtcSgvp":{"name":"taskDidReceiveChallenge","abstract":"

    Closure called on the urlSession(_:task:didReceive:completionHandler:).

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0J4TaskCs5Int64VA2JtcSgvp":{"name":"taskDidSendBodyData","abstract":"

    Closure that receives urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskNeedNewBodyStream","abstract":"

    Closure called on the urlSession(_:task:needNewBodyStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0I4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp":{"name":"taskWillPerformHTTPRedirection","abstract":"

    Closure called on the urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0J4TaskCSo0jkI0CtcSgvp":{"name":"taskDidFinishCollectingMetrics","abstract":"

    Closure called on the urlSession(_:task:didFinishCollecting:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0H4TaskCs5Error_pSgtcSgvp":{"name":"taskDidComplete","abstract":"

    Closure called on the urlSession(_:task:didCompleteWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskIsWaitingForConnectivity","abstract":"

    Closure called on the urlSession(_:taskIsWaitingForConnectivity:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0jiF0C10Foundation0I0VtcSgvp":{"name":"dataTaskDidReceiveData","abstract":"

    Closure that recieves the urlSession(_:dataTask:didReceive:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0j4DataF0CSo19NSCachedURLResponseCtcSgvp":{"name":"dataTaskWillCacheResponse","abstract":"

    Closure called on the urlSession(_:dataTask:willCacheResponse:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0l8DownloadF0C10Foundation0K0VtcSgvp":{"name":"downloadTaskDidFinishDownloadingToURL","abstract":"

    Closure called on the urlSession(_:downloadTask:didFinishDownloadingTo:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0j8DownloadF0Cs5Int64VA2JtcSgvp":{"name":"downloadTaskDidWriteData","abstract":"

    Closure called on the urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0k8DownloadF0Cs5Int64VAJtcSgvp":{"name":"downloadTaskDidResumeAtOffset","abstract":"

    Closure called on the urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateURLRequestyAA7RequestC_10Foundation0H0VtcSgvp":{"name":"requestDidCreateURLRequest","abstract":"

    Closure called on the request(_:didCreateURLRequest:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateURLRequestWithErroryAA7RequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToCreateURLRequestWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC038requestDidAdaptInitialRequestToAdaptedI0yAA0I0C_10Foundation10URLRequestVAItcSgvp":{"name":"requestDidAdaptInitialRequestToAdaptedRequest","abstract":"

    Closure called on the request(_:didAdaptInitialRequest:to:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC40requestDidFailToAdaptURLRequestWithErroryAA7RequestC_10Foundation0J0Vs0L0_ptcSgvp":{"name":"requestDidFailToAdaptURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToAdaptURLRequest:withError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCreateTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCreateTask","abstract":"

    Closure called on the request(_:didCreateTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidGatherMetricsyAA7RequestC_So016NSURLSessionTaskH0CtcSgvp":{"name":"requestDidGatherMetrics","abstract":"

    Closure called on the request(_:didGatherMetrics:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32requestDidFailTaskEarlyWithErroryAA7RequestC_So012NSURLSessionH0Cs0K0_ptcSgvp":{"name":"requestDidFailTaskEarlyWithError","abstract":"

    Closure called on the request(_:didFailTask:earlyWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidCompleteTaskWithErroryAA7RequestC_So012NSURLSessionH0Cs0J0_pSgtcSgvp":{"name":"requestDidCompleteTaskWithError","abstract":"

    Closure called on the request(_:didCompleteTask:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestIsRetryingyAA7RequestCcSgvp":{"name":"requestIsRetrying","abstract":"

    Closure called on the requestIsRetrying(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidFinishyAA7RequestCcSgvp":{"name":"requestDidFinish","abstract":"

    Closure called on the requestDidFinish(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidResumeyAA7RequestCcSgvp":{"name":"requestDidResume","abstract":"

    Closure called on the requestDidResume(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidResumeTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidResumeTask","abstract":"

    Closure called on the request(_:didResumeTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestDidSuspendyAA7RequestCcSgvp":{"name":"requestDidSuspend","abstract":"

    Closure called on the requestDidSuspend(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21requestDidSuspendTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidSuspendTask","abstract":"

    Closure called on the request(_:didSuspendTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidCancelyAA7RequestCcSgvp":{"name":"requestDidCancel","abstract":"

    Closure called on the requestDidCancel(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCancelTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCancelTask","abstract":"

    Closure called on the request(_:didCancelTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC47requestDidValidateRequestResponseDataWithResultyAA0jH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG0J0VSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseDataWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:data:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidParseResponseyAA11DataRequestC_AA0iH0Vy10Foundation0I0VSgGtcSgvp":{"name":"requestDidParseResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateUploadableyAA13UploadRequestC_AF0H0OtcSgvp":{"name":"requestDidCreateUploadable","abstract":"

    Closure called on the request(_:didCreateUploadable:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateUploadableWithErroryAA13UploadRequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateUploadableWithError","abstract":"

    Closure called on the request(_:didFailToCreateUploadableWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28requestDidProvideInputStreamyAA13UploadRequestC_So07NSInputI0CtcSgvp":{"name":"requestDidProvideInputStream","abstract":"

    Closure called on the request(_:didProvideInputStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC46requestDidFinishDownloadingUsingTaskWithResultyAA15DownloadRequestC_So012NSURLSessionJ0Cs0L0Oy10Foundation3URLVs5Error_pGtcSgvp":{"name":"requestDidFinishDownloadingUsingTaskWithResult","abstract":"

    Closure called on the request(_:didFinishDownloadingUsing:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30requestDidCreateDestinationURLyAA15DownloadRequestC_10Foundation0I0VtcSgvp":{"name":"requestDidCreateDestinationURL","abstract":"

    Closure called on the request(_:didCreateDestinationURL:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC50requestDidValidateRequestResponseFileURLWithResultyAA08DownloadH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG3URLVSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseFileURLWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:temporaryURL:destinationURL:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidParseDownloadResponseyAA0H7RequestC_AA0hI0Vy10Foundation3URLVSgGtcSgvp":{"name":"requestDidParseDownloadResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC5queueACSo012OS_dispatch_E0C_tcfc":{"name":"init(queue:)","abstract":"

    Undocumented

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html":{"name":"CompositeEventMonitor","abstract":"

    An EventMonitor which can contain multiple EventMonitors and calls their methods on their queues.

    "},"Classes/ClosureEventMonitor.html":{"name":"ClosureEventMonitor","abstract":"

    EventMonitor that allows optional closures to be set to receive events.

    "},"Classes/MultipartFormData.html":{"name":"MultipartFormData","abstract":"

    Constructs multipart/form-data for uploads within an HTTP or HTTPS body. There are currently two ways to encode"},"Classes/NetworkReachabilityManager.html":{"name":"NetworkReachabilityManager","abstract":"

    The NetworkReachabilityManager class listens for reachability changes of hosts and addresses for both WWAN and"},"Classes/Request.html":{"name":"Request","abstract":"

    Request is the common superclass of all Alamofire request types and provides common state, delegate, and callback"},"Classes/AlamofireNotifications.html":{"name":"AlamofireNotifications","abstract":"

    EventMonitor that provides Alamofire’s notifications.

    "},"Classes/JSONParameterEncoder.html":{"name":"JSONParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as JSON body data.

    "},"Classes/URLEncodedFormParameterEncoder.html":{"name":"URLEncodedFormParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as URL-encoded query strings to be set on the URL or as body data, depending"},"Classes/URLEncodedFormEncoder.html":{"name":"URLEncodedFormEncoder","abstract":"

    An object that encodes instances into URL-encoded query strings.

    "},"Classes/DataRequest.html":{"name":"DataRequest","abstract":"

    Undocumented

    "},"Classes/DownloadRequest.html":{"name":"DownloadRequest","abstract":"

    Undocumented

    "},"Classes/UploadRequest.html":{"name":"UploadRequest","abstract":"

    Undocumented

    "},"Classes/Adapter.html":{"name":"Adapter","abstract":"

    Undocumented

    "},"Classes/Retrier.html":{"name":"Retrier","abstract":"

    Undocumented

    "},"Classes/Interceptor.html":{"name":"Interceptor","abstract":"

    Undocumented

    "},"Classes/DataResponseSerializer.html":{"name":"DataResponseSerializer","abstract":"

    A ResponseSerializer that performs minimal reponse checking and returns any response data as-is. By default, a"},"Classes/StringResponseSerializer.html":{"name":"StringResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a String. By default, a request returning nil or no"},"Classes/JSONResponseSerializer.html":{"name":"JSONResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data using JSONSerialization. By default, a request returning"},"Classes/DecodableResponseSerializer.html":{"name":"DecodableResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a generic value using any type that conforms to"},"Classes/RetryPolicy.html":{"name":"RetryPolicy","abstract":"

    A retry policy that retries requests using an exponential backoff for allowed HTTP methods and HTTP status codes"},"Classes/ConnectionLostRetryPolicy.html":{"name":"ConnectionLostRetryPolicy","abstract":"

    A retry policy that automatically retries idempotent requests for network connection lost errors. For more"},"Classes/ServerTrustManager.html":{"name":"ServerTrustManager","abstract":"

    Responsible for managing the mapping of ServerTrustEvaluating values to given hosts.

    "},"Classes/DefaultTrustEvaluator.html":{"name":"DefaultTrustEvaluator","abstract":"

    An evaluator which uses the default server trust evaluation while allowing you to control whether to validate the"},"Classes/RevocationTrustEvaluator.html":{"name":"RevocationTrustEvaluator","abstract":"

    An evaluator which Uses the default and revoked server trust evaluations allowing you to control whether to validate"},"Classes/PinnedCertificatesTrustEvaluator.html":{"name":"PinnedCertificatesTrustEvaluator","abstract":"

    Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/PublicKeysTrustEvaluator.html":{"name":"PublicKeysTrustEvaluator","abstract":"

    Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/CompositeTrustEvaluator.html":{"name":"CompositeTrustEvaluator","abstract":"

    Uses the provided evaluators to validate the server trust. The trust is only considered valid if all of the"},"Classes/DisabledEvaluator.html":{"name":"DisabledEvaluator","abstract":"

    Disables all evaluation which in turn will always consider any server trust as valid.

    "},"Classes/Session.html":{"name":"Session","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html":{"name":"SessionDelegate","abstract":"

    Undocumented

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Extensions.html":{"name":"Extensions","abstract":"

    The following extensions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "},"Typealiases.html":{"name":"Type Aliases","abstract":"

    The following type aliases are available globally.

    "}} \ No newline at end of file diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/undocumented.json b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/undocumented.json index 083577a1c..127e5db45 100644 --- a/docs/docsets/Alamofire.docset/Contents/Resources/Documents/undocumented.json +++ b/docs/docsets/Alamofire.docset/Contents/Resources/Documents/undocumented.json @@ -1,1601 +1,1524 @@ { "warnings": [ { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 47, "symbol": "AFError.ParameterEncodingFailureReason.missingURL", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 48, "symbol": "AFError.ParameterEncodingFailureReason.jsonEncodingFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 92, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartURLInvalid(url:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 93, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFilenameInvalid(in:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 94, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileNotReachable(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 95, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileNotReachableWithError(atURL:error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 96, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileIsDirectory(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 97, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileSizeNotAvailable(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 98, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileSizeQueryFailedWithError(forURL:error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 99, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartInputStreamCreationFailed(for:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 101, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamCreationFailed(for:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 102, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamFileAlreadyExists(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 103, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamURLInvalid(url:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 104, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamWriteFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 106, "symbol": "AFError.MultipartEncodingFailureReason.inputStreamReadFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 119, "symbol": "AFError.ResponseValidationFailureReason.dataFileNil", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 120, "symbol": "AFError.ResponseValidationFailureReason.dataFileReadFailed(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 121, "symbol": "AFError.ResponseValidationFailureReason.missingContentType(acceptableContentTypes:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 122, "symbol": "AFError.ResponseValidationFailureReason.unacceptableContentType(acceptableContentTypes:responseContentType:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 123, "symbol": "AFError.ResponseValidationFailureReason.unacceptableStatusCode(code:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 165, "symbol": "AFError.ServerTrustFailureReason.noRequiredEvaluator(host:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 188, "symbol": "AFError.sessionDeinitialized", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 189, "symbol": "AFError.sessionInvalidated(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 190, "symbol": "AFError.explicitlyCancelled", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 191, "symbol": "AFError.invalidURL(url:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 192, "symbol": "AFError.parameterEncodingFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 193, "symbol": "AFError.parameterEncoderFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 194, "symbol": "AFError.multipartEncodingFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 195, "symbol": "AFError.requestAdaptationFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 196, "symbol": "AFError.responseValidationFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 197, "symbol": "AFError.responseSerializationFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 198, "symbol": "AFError.serverTrustEvaluationFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 199, "symbol": "AFError.requestRetryFailed(retryError:originalError:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 213, "symbol": "AFError.isSessionDeinitializedError", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 219, "symbol": "AFError.isSessionInvalidatedError", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", "line": 245, "symbol": "AFError.isParameterEncoderError", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFResult.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFResult.swift", "line": 27, "symbol": "AFResult", "symbol_kind": "source.lang.swift.decl.typealias", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AlamofireExtended.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AlamofireExtended.swift", "line": 37, "symbol": "AlamofireExtended.ExtendedType", "symbol_kind": "source.lang.swift.decl.associatedtype", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AlamofireExtended.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AlamofireExtended.swift", "line": 46, "symbol": "AlamofireExtended.af", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AlamofireExtended.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AlamofireExtended.swift", "line": 51, "symbol": "AlamofireExtended.af", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/CachedResponseHandler.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/CachedResponseHandler.swift", "line": 57, "symbol": "ResponseCacher.Behavior.cache", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/CachedResponseHandler.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/CachedResponseHandler.swift", "line": 58, "symbol": "ResponseCacher.Behavior.doNotCache", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/CachedResponseHandler.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/CachedResponseHandler.swift", "line": 59, "symbol": "ResponseCacher.Behavior.modify(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", - "line": 252, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "line": 264, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", - "line": 253, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "line": 265, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", - "line": 264, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "line": 276, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", - "line": 265, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "line": 277, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", - "line": 609, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "line": 642, "symbol": "ClosureEventMonitor.init(queue:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 29, "symbol": "HTTPMethod.connect", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 30, "symbol": "HTTPMethod.delete", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 31, "symbol": "HTTPMethod.get", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 32, "symbol": "HTTPMethod.head", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 33, "symbol": "HTTPMethod.options", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 34, "symbol": "HTTPMethod.patch", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 35, "symbol": "HTTPMethod.post", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 36, "symbol": "HTTPMethod.put", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", "line": 37, "symbol": "HTTPMethod.trace", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/MultipartUpload.swift", - "line": null, - "symbol": "MultipartUpload", - "symbol_kind": "source.lang.swift.decl.extension", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/MultipartUpload.swift", - "line": 27, - "symbol": "MultipartUpload", - "symbol_kind": "source.lang.swift.decl.class", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/MultipartUpload.swift", - "line": 86, - "symbol": "MultipartUpload.createUploadable()", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 43, "symbol": "NetworkReachabilityManager.NetworkReachabilityStatus.unknown", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 44, "symbol": "NetworkReachabilityManager.NetworkReachabilityStatus.notReachable", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 45, "symbol": "NetworkReachabilityManager.NetworkReachabilityStatus.reachable(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 53, "symbol": "NetworkReachabilityManager.ConnectionType.ethernetOrWiFi", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 54, "symbol": "NetworkReachabilityManager.ConnectionType.wwan", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 84, "symbol": "NetworkReachabilityManager.flags", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 95, "symbol": "NetworkReachabilityManager.previousFlags", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", "line": 136, "symbol": "NetworkReachabilityManager.deinit", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", "line": 71, "symbol": "URLEncoding.Destination.httpBody", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", "line": 71, "symbol": "URLEncoding.Destination.methodDependent", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", "line": 71, "symbol": "URLEncoding.Destination.queryString", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", "line": 88, "symbol": "URLEncoding.ArrayEncoding.brackets", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", "line": 88, "symbol": "URLEncoding.ArrayEncoding.noBrackets", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", "line": 105, "symbol": "URLEncoding.BoolEncoding.literal", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", "line": 105, "symbol": "URLEncoding.BoolEncoding.numeric", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RedirectHandler.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RedirectHandler.swift", "line": 58, "symbol": "Redirector.Behavior.follow", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RedirectHandler.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RedirectHandler.swift", "line": 59, "symbol": "Redirector.Behavior.doNotFollow", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RedirectHandler.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RedirectHandler.swift", "line": 60, "symbol": "Redirector.Behavior.modify(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": null, "symbol": "UploadRequest.Uploadable", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": 42, "symbol": "Request.State.cancelled", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": 42, "symbol": "Request.State.initialized", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": 42, "symbol": "Request.State.resumed", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": 42, "symbol": "Request.State.suspended", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": 143, "symbol": "Request.redirectHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", "line": 150, "symbol": "Request.cachedResponseHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 701, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 723, "symbol": "RequestDelegate.sessionConfiguration", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 703, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 725, "symbol": "RequestDelegate.retryResult(for:dueTo:completion:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 704, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 726, "symbol": "RequestDelegate.retryRequest(_:withDelay:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 706, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 728, "symbol": "RequestDelegate.cancelRequest(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 707, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 729, "symbol": "RequestDelegate.cancelDownloadRequest(_:byProducingResumeData:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 708, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 730, "symbol": "RequestDelegate.suspendRequest(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 709, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 731, "symbol": "RequestDelegate.resumeRequest(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 716, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 738, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 717, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 739, "symbol": "DataRequest.convertible", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 720, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 742, "symbol": "DataRequest.data", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 799, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 821, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 856, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 878, "symbol": "DownloadRequest.Downloadable", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 857, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 879, "symbol": "DownloadRequest.Downloadable.request(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 858, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 880, "symbol": "DownloadRequest.Downloadable.resumeData(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 862, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 884, "symbol": "DownloadRequest.downloadable", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 874, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 896, "symbol": "DownloadRequest.resumeData", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 875, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 897, "symbol": "DownloadRequest.fileURL", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 925, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 947, "symbol": "DownloadRequest.task(forResumeData:using:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 973, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 995, "symbol": "UploadRequest", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 974, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 996, "symbol": "UploadRequest.Uploadable", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 975, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 997, "symbol": "UploadRequest.Uploadable.data(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 976, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 998, "symbol": "UploadRequest.Uploadable.file(_:shouldRemove:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 977, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 999, "symbol": "UploadRequest.Uploadable.stream(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 982, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 1004, "symbol": "UploadRequest.upload", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 986, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 1008, "symbol": "UploadRequest.uploadable", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 1060, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 1082, "symbol": "UploadableConvertible", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 1061, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 1083, "symbol": "UploadableConvertible.createUploadable()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 1065, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 1087, "symbol": "UploadRequest.Uploadable.createUploadable()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", - "line": 1070, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "line": 1092, "symbol": "UploadConvertible", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 40, "symbol": "RetryResult", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 41, "symbol": "RetryResult.retry", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 42, "symbol": "RetryResult.retryWithDelay(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 43, "symbol": "RetryResult.doNotRetry", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 44, "symbol": "RetryResult.doNotRetryWithError(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 104, "symbol": "AdaptHandler", "symbol_kind": "source.lang.swift.decl.typealias", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 105, "symbol": "RetryHandler", "symbol_kind": "source.lang.swift.decl.typealias", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 109, "symbol": "Adapter", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 112, "symbol": "Adapter.init(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 123, "symbol": "Retrier", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 126, "symbol": "Retrier.init(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 142, "symbol": "Interceptor", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 143, "symbol": "Interceptor.adapters", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 144, "symbol": "Interceptor.retriers", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 146, "symbol": "Interceptor.init(adaptHandler:retryHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 151, "symbol": "Interceptor.init(adapter:retrier:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", "line": 156, "symbol": "Interceptor.init(adapters:retriers:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 49, "symbol": "ResponseSerializer.emptyRequestMethods", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 50, "symbol": "ResponseSerializer.emptyResponseCodes", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 54, "symbol": "ResponseSerializer.defaultEmptyRequestMethods", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 55, "symbol": "ResponseSerializer.defaultEmptyResponseCodes", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 57, "symbol": "ResponseSerializer.emptyRequestMethods", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 58, "symbol": "ResponseSerializer.emptyResponseCodes", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 60, "symbol": "ResponseSerializer.requestAllowsEmptyResponseData(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 66, "symbol": "ResponseSerializer.responseAllowsEmptyResponseData(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 71, "symbol": "ResponseSerializer.emptyResponseAllowed(forRequest:response:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 569, "symbol": "EmptyResponse.emptyValue()", "symbol_kind": "source.lang.swift.decl.function.method.static", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 574, "symbol": "Empty.value", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", "line": 578, "symbol": "Empty.emptyValue()", "symbol_kind": "source.lang.swift.decl.function.method.static", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ServerTrustEvaluation.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ServerTrustEvaluation.swift", "line": 332, "symbol": "DisabledEvaluator.init()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": null, "symbol": "Session", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": null, "symbol": "Session", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 27, "symbol": "Session", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 28, "symbol": "Session.default", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 30, "symbol": "Session.delegate", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 31, "symbol": "Session.rootQueue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 32, "symbol": "Session.requestQueue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 33, "symbol": "Session.serializationQueue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 34, "symbol": "Session.interceptor", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 35, "symbol": "Session.serverTrustManager", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 36, "symbol": "Session.redirectHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 37, "symbol": "Session.cachedResponseHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 39, "symbol": "Session.session", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 40, "symbol": "Session.eventMonitor", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 41, "symbol": "Session.defaultEventMonitors", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 44, "symbol": "Session.startRequestsImmediately", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", "line": 46, "symbol": "Session.init(session:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 77, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 75, "symbol": "Session.init(configuration:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 104, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 102, "symbol": "Session.deinit", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 124, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 122, "symbol": "Session.request(_:method:parameters:encoding:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 153, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 151, "symbol": "Session.request(_:method:parameters:encoder:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 168, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 166, "symbol": "Session.request(_:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 183, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 181, "symbol": "Session.download(_:method:parameters:encoding:headers:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 199, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 197, "symbol": "Session.download(_:method:parameters:encoder:headers:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 215, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 213, "symbol": "Session.download(_:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 231, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 229, "symbol": "Session.download(resumingWith:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 272, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 270, "symbol": "Session.upload(_:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 282, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 280, "symbol": "Session.upload(_:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 288, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 286, "symbol": "Session.upload(_:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 298, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 296, "symbol": "Session.upload(_:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 304, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 302, "symbol": "Session.upload(_:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 314, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 312, "symbol": "Session.upload(_:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 320, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 318, "symbol": "Session.upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 338, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 336, "symbol": "Session.upload(multipartFormData:usingThreshold:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 513, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 518, "symbol": "Session.sessionConfiguration", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 517, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 522, "symbol": "Session.retryResult(for:dueTo:completion:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 533, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 538, "symbol": "Session.retryRequest(_:withDelay:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 550, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 555, "symbol": "Session.cancelRequest(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 563, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 569, "symbol": "Session.cancelDownloadRequest(_:byProducingResumeData:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 580, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 587, "symbol": "Session.suspendRequest(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 589, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 600, "symbol": "Session.resumeRequest(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 602, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 617, "symbol": "Session.request(for:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 606, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 621, "symbol": "Session.didCompleteTask(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 610, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 625, "symbol": "Session.credential(for:in:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", - "line": 615, + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "line": 630, "symbol": "Session.cancelRequestsForSessionInvalidation(with:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 27, - "symbol": "SessionStateProvider", - "symbol_kind": "source.lang.swift.decl.protocol", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 28, - "symbol": "SessionStateProvider.serverTrustManager", - "symbol_kind": "source.lang.swift.decl.var.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 29, - "symbol": "SessionStateProvider.redirectHandler", - "symbol_kind": "source.lang.swift.decl.var.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 30, - "symbol": "SessionStateProvider.cachedResponseHandler", - "symbol_kind": "source.lang.swift.decl.var.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 32, - "symbol": "SessionStateProvider.request(for:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 33, - "symbol": "SessionStateProvider.didCompleteTask(_:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 34, - "symbol": "SessionStateProvider.credential(for:in:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", - "line": 35, - "symbol": "SessionStateProvider.cancelRequestsForSessionInvalidation(with:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 38, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 44, "symbol": "SessionDelegate.init(fileManager:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 50, "symbol": "SessionDelegate.urlSession(_:didBecomeInvalidWithError:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 61, "symbol": "SessionDelegate.urlSession(_:task:didReceive:completionHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 120, "symbol": "SessionDelegate.urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 135, "symbol": "SessionDelegate.urlSession(_:task:needNewBodyStream:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 147, "symbol": "SessionDelegate.urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 161, "symbol": "SessionDelegate.urlSession(_:task:didFinishCollecting:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 167, "symbol": "SessionDelegate.urlSession(_:task:didCompleteWithError:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 176, "symbol": "SessionDelegate.urlSession(_:taskIsWaitingForConnectivity:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 182, "symbol": "SessionDelegate.urlSession(_:dataTask:didReceive:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 192, "symbol": "SessionDelegate.urlSession(_:dataTask:willCacheResponse:completionHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 207, "symbol": "SessionDelegate.urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 224, "symbol": "SessionDelegate.urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionStateProvider.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", "line": 243, "symbol": "SessionDelegate.urlSession(_:downloadTask:didFinishDownloadingTo:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/URLSessionConfiguration+Alamofire.swift", + "file": "/Users/jshier/Desktop/Code/Alamofire/Source/URLSessionConfiguration+Alamofire.swift", "line": 29, "symbol": "AlamofireExtension.default", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" } ], - "source_directory": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire" + "source_directory": "/Users/jshier/Desktop/Code/Alamofire" } \ No newline at end of file diff --git a/docs/docsets/Alamofire.docset/Contents/Resources/docSet.dsidx b/docs/docsets/Alamofire.docset/Contents/Resources/docSet.dsidx index cf9c80c1f..ebca0f670 100644 Binary files a/docs/docsets/Alamofire.docset/Contents/Resources/docSet.dsidx and b/docs/docsets/Alamofire.docset/Contents/Resources/docSet.dsidx differ diff --git a/docs/docsets/Alamofire.tgz b/docs/docsets/Alamofire.tgz index 967a0f704..47f626885 100644 Binary files a/docs/docsets/Alamofire.tgz and b/docs/docsets/Alamofire.tgz differ diff --git a/docs/docsets/Alamofire.xml b/docs/docsets/Alamofire.xml index 5fc729cf6..b7b746aec 100644 --- a/docs/docsets/Alamofire.xml +++ b/docs/docsets/Alamofire.xml @@ -1 +1 @@ -5.0.0-beta.5https://alamofire.github.io/Alamofire/docsets/Alamofire.tgz +5.0.0-beta.6https://alamofire.github.io/Alamofire/docsets/Alamofire.tgz diff --git a/docs/index.html b/docs/index.html index 7f3b4a9f2..c5f5a0e23 100644 --- a/docs/index.html +++ b/docs/index.html @@ -550,7 +550,7 @@

    Embedded Framework

    It does not matter which Products folder you choose from, but it does matter whether you choose the top or bottom Alamofire.framework.

  • -
  • Select the top Alamofire.framework for iOS and the bottom one for OS X.

    +
  • Select the top Alamofire.framework for iOS and the bottom one for macOS.

    You can verify which one you selected by inspecting the build log for your project. The build target for Alamofire will be listed as either Alamofire iOS, Alamofire macOS, Alamofire tvOS or Alamofire watchOS.

    @@ -627,7 +627,7 @@

    License

    diff --git a/docs/search.json b/docs/search.json index a31a1f7b0..24ceaa011 100644 --- a/docs/search.json +++ b/docs/search.json @@ -1 +1 @@ -{"Typealiases.html#/s:9Alamofire8AFResulta":{"name":"AFResult","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire10Parametersa":{"name":"Parameters","abstract":"

    A dictionary of parameters to apply to a URLRequest.

    "},"Typealiases.html#/s:9Alamofire12AdaptHandlera":{"name":"AdaptHandler","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire12RetryHandlera":{"name":"RetryHandler","abstract":"

    Undocumented

    "},"Structs/Empty.html#/s:9Alamofire5EmptyV5valueACvpZ":{"name":"value","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/Empty.html#/s:9Alamofire5EmptyV10emptyValueACyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    The final destination URL of the data returned from the server after it is moved.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    The resume data generated if the request was cancelled.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request8response7fileURL10resumeData7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAL0G0VSgAL0I0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:fileURL:resumeData:metrics:serializationDuration:result:)","abstract":"

    Creates a DownloadResponse instance with the specified parameters derived from response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    The data returned by the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request8response4data7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:data:metrics:serializationDuration:result:)","abstract":"

    Creates a DataResponse instance with the specified parameters derviced from the response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the specified closure when the result of this DataResponse is a success, passing the unwrapped","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DataResponse is a success, passing the unwrapped result","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6followyA2EmF":{"name":"follow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO11doNotFollowyA2EmF":{"name":"doNotFollow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6modifyyAE10Foundation10URLRequestVSgSo16NSURLSessionTaskC_AISo17NSHTTPURLResponseCtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the Redirector type.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV6followACvpZ":{"name":"follow","abstract":"

    Returns a Redirector with a follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV11doNotFollowACvpZ":{"name":"doNotFollow","abstract":"

    Returns a Redirector with a do not follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the Redirector.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a Redirector instance from the Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","parent_name":"Redirector"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a JSONEncoding instance with default writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns a JSONEncoding instance with .prettyPrinted writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsSo20NSJSONWritingOptionsVvp":{"name":"options","abstract":"

    The options for writing the parameters as JSON data.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsACSo20NSJSONWritingOptionsV_tcfc":{"name":"init(options:)","abstract":"

    Creates a JSONEncoding instance using the specified options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_14withJSONObject10Foundation10URLRequestVAA0G11Convertible_p_ypSgtKF":{"name":"encode(_:withJSONObject:)","abstract":"

    Creates a URL request by encoding the JSON object and setting the resulting data on the HTTP body.

    ","parent_name":"JSONEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html":{"name":"Destination","abstract":"

    Defines whether the url-encoded query string is applied to the existing query string or HTTP body of the","parent_name":"URLEncoding"},"Structs/URLEncoding/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a default URLEncoding instance with a .methodDependent destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11queryStringACvpZ":{"name":"queryString","abstract":"

    Returns a URLEncoding instance with a .queryString destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV8httpBodyACvpZ":{"name":"httpBody","abstract":"

    Returns a URLEncoding instance with an .httpBody destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The destination defining where the encoded query string is to be applied to the URL request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV13arrayEncodingAC05ArrayD0Ovp":{"name":"arrayEncoding","abstract":"

    The encoding to use for Array parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV12boolEncodingAC04BoolD0Ovp":{"name":"boolEncoding","abstract":"

    The encoding to use for Bool parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destination13arrayEncoding04boolE0A2C11DestinationO_AC05ArrayE0OAC04BoolE0Otcfc":{"name":"init(destination:arrayEncoding:boolEncoding:)","abstract":"

    Creates a URLEncoding instance using the specified destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV15queryComponents7fromKey5valueSaySS_SStGSS_yptF":{"name":"queryComponents(fromKey:value:)","abstract":"

    Creates percent-escaped, URL encoded query string components from the given key-value pair using recursion.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6escapeyS2SF":{"name":"escape(_:)","abstract":"

    Returns a percent-escaped string following RFC 3986 for a query string key or value.

    ","parent_name":"URLEncoding"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4nameSSvp":{"name":"name","abstract":"

    Name of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV5valueSSvp":{"name":"value","abstract":"

    Value of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4name5valueACSS_SStcfc":{"name":"init(name:value:)","abstract":"

    Creates an instance from the given name and value.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13acceptCharsetyACSSFZ":{"name":"acceptCharset(_:)","abstract":"

    Returns an Accept-Charset header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptLanguageyACSSFZ":{"name":"acceptLanguage(_:)","abstract":"

    Returns an Accept-Language header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptEncodingyACSSFZ":{"name":"acceptEncoding(_:)","abstract":"

    Returns an Accept-Encoding header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization8username8passwordACSS_SStFZ":{"name":"authorization(username:password:)","abstract":"

    Returns a Basic Authorization header using the username and password provided.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization11bearerTokenACSS_tFZ":{"name":"authorization(bearerToken:)","abstract":"

    Returns a Bearer Authorization header using the bearerToken provided

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorizationyACSSFZ":{"name":"authorization(_:)","abstract":"

    Returns an Authorization header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV18contentDispositionyACSSFZ":{"name":"contentDisposition(_:)","abstract":"

    Returns a Content-Disposition header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV11contentTypeyACSSFZ":{"name":"contentType(_:)","abstract":"

    Returns a Content-Type header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV9userAgentyACSSFZ":{"name":"userAgent(_:)","abstract":"

    Returns a User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptEncodingACvpZ":{"name":"defaultAcceptEncoding","abstract":"

    Returns Alamofire’s default Accept-Encoding header, appropriate for the encodings supporte by particular OS","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptLanguageACvpZ":{"name":"defaultAcceptLanguage","abstract":"

    Returns Alamofire’s default Accept-Language header, generated by querying Locale for the user’s","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV16defaultUserAgentACvpZ":{"name":"defaultUserAgent","abstract":"

    Returns Alamofire’s default User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVACycfc":{"name":"init()","abstract":"

    Create an empty instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSayAA10HTTPHeaderVGcfc":{"name":"init(_:)","abstract":"

    Create an instance from an array of HTTPHeaders. Duplicate case-insensitive names are collapsed into the last","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSDyS2SGcfc":{"name":"init(_:)","abstract":"

    Create an instance from a [String: String]. Duplicate case-insensitive names are collapsed into the last name","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3add4name5valueySS_SStF":{"name":"add(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3addyyAA10HTTPHeaderVF":{"name":"add(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6update4name5valueySS_SStF":{"name":"update(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6updateyyAA10HTTPHeaderVF":{"name":"update(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6remove4nameySS_tF":{"name":"remove(name:)","abstract":"

    Case-insensitively removes an HTTPHeader, if it exists, from the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV4sortyyF":{"name":"sort()","abstract":"

    Sort the current instance by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6sortedACyF":{"name":"sorted()","abstract":"

    Returns an instance sorted by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV5value3forSSSgSS_tF":{"name":"value(for:)","abstract":"

    Case-insensitively find a header’s value by name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVySSSgSScip":{"name":"subscript(_:)","abstract":"

    Case-insensitively access the header with the given name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV10dictionarySDyS2SGvp":{"name":"dictionary","abstract":"

    The dictionary representation of all headers.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s30ExpressibleByDictionaryLiteralP010dictionaryD0x3KeyQz_5ValueQztd_tcfc":{"name":"init(dictionaryLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s25ExpressibleByArrayLiteralP05arrayD0x0cD7ElementQzd_tcfc":{"name":"init(arrayLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:ST12makeIterator0B0QzyF":{"name":"makeIterator()","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl10startIndex0B0Qzvp":{"name":"startIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl8endIndex0B0Qzvp":{"name":"endIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sly7ElementQz5IndexQzcip":{"name":"subscript(_:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl5index5after5IndexQzAD_tF":{"name":"index(after:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV7defaultACvpZ":{"name":"default","abstract":"

    The default set of HTTPHeaders used by Alamofire. Includes Accept-Encoding, Accept-Language, and","parent_name":"HTTPHeaders"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO5cacheyA2EmF":{"name":"cache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO10doNotCacheyA2EmF":{"name":"doNotCache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO6modifyyAESo19NSCachedURLResponseCSgSo20NSURLSessionDataTaskC_AHtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the ResponseCacher type.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV5cacheACvpZ":{"name":"cache","abstract":"

    Returns a ResponseCacher with a follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV10doNotCacheACvpZ":{"name":"doNotCache","abstract":"

    Returns a ResponseCacher with a do not follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the ResponseCacher.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a ResponseCacher instance from the Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","parent_name":"ResponseCacher"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE12certificatesSaySo17SecCertificateRefaGvp":{"name":"certificates","abstract":"

    Returns all valid cer, crt, and der certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE10publicKeysSaySo9SecKeyRefaGvp":{"name":"publicKeys","abstract":"

    Returns all public keys for the valid certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE5paths19forResourcesOfTypesSaySSGAH_tF":{"name":"paths(forResourcesOfTypes:)","abstract":"

    Returns all pathnames for the resources identified by the provided file extensions.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate6policy13errorProducerySo0c6PolicyE0a_s5Error_ps5Int32V_So0cD10ResultTypeVtXEtKF":{"name":"validate(policy:errorProducer:)","abstract":"

    Attempts to validate self using the policy provided and transforming any error produced using the closure passed.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE5apply6policyAESo0c6PolicyE0a_tKF":{"name":"apply(policy:)","abstract":"

    Applies a SecPolicy to self, throwing if it fails.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate13errorProducerys5Error_ps5Int32V_So0cD10ResultTypeVtXE_tKF":{"name":"validate(errorProducer:)","abstract":"

    Validate self, passing any failure values through errorProducer.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE21setAnchorCertificatesyySaySo0c11CertificateE0aGKF":{"name":"setAnchorCertificates(_:)","abstract":"

    Sets a custom certificate chain on self, allowing full validation of a self-signed certificate and its chain.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    The public keys contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE12certificatesSaySo0c11CertificateE0aGvp":{"name":"certificates","abstract":"

    The SecCertificates contained i self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE15certificateDataSay10Foundation0G0VGvp":{"name":"certificateData","abstract":"

    The Data values for all certificates contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE24performDefaultValidation7forHostySS_tKF":{"name":"performDefaultValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.default. This evaluation does not validate the hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE17performValidation7forHostySS_tKF":{"name":"performValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.hostname(host), which performs the default validation as well as","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE7defaultAEvpZ":{"name":"default","abstract":"

    Creates a SecPolicy instance which will validate server certificates but not require a host name match.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE8hostnameyAESSFZ":{"name":"hostname(_:)","abstract":"

    Creates a SecPolicy instance which will validate server certificates and much match the provided hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE10revocation7optionsAeA24RevocationTrustEvaluatorC7OptionsV_tKFZ":{"name":"revocation(options:)","abstract":"

    Creates a SecPolicy which checks the revocation of certificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE4dataSay10Foundation4DataVGvp":{"name":"data","abstract":"

    All Data values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    All public SecKey values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo17SecCertificateRefaRszlE9publicKeySo0cgE0aSgvp":{"name":"publicKey","abstract":"

    The public key for self, if it can be extracted.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAAs5Int32VRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is errSecSuccess.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo18SecTrustResultTypeVRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is.unspecifiedor.proceed`.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo25NSURLSessionConfigurationCRbzlE7defaultAEvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html":{"name":"AlamofireExtension","abstract":"

    Type that acts as a generic extension point for all AlamofireExtended types.

    "},"Structs/ResponseCacher.html":{"name":"ResponseCacher","abstract":"

    ResponseCacher is a convenience CachedResponseHandler making it easy to cache, not cache, or modify a cached"},"Structs/HTTPHeaders.html":{"name":"HTTPHeaders","abstract":"

    An order-preserving and case-insensitive representation of HTTP headers.

    "},"Structs/HTTPHeader.html":{"name":"HTTPHeader","abstract":"

    A representation of a single HTTP header’s name / value pair.

    "},"Structs/URLEncoding.html":{"name":"URLEncoding","abstract":"

    Creates a url-encoded query string to be set as or appended to any existing URL query string or set as the HTTP"},"Structs/JSONEncoding.html":{"name":"JSONEncoding","abstract":"

    Uses JSONSerialization to create a JSON representation of the parameters object, which is set as the body of the"},"Structs/Redirector.html":{"name":"Redirector","abstract":"

    Redirector is a convenience RedirectHandler making it easy to follow, not follow, or modify a redirect.

    "},"Structs/DataResponse.html":{"name":"DataResponse","abstract":"

    Used to store all data associated with a serialized response of a data or upload request.

    "},"Structs/DownloadResponse.html":{"name":"DownloadResponse","abstract":"

    Used to store all data associated with a serialized response of a download request.

    "},"Structs/Empty.html":{"name":"Empty","abstract":"

    A type representing an empty response. Use Empty.value to get the instance.

    "},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertibleP02asB010Foundation0B0VyKF":{"name":"asURLRequest()","abstract":"

    Returns a URLRequest or throws if an Error was encoutered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertiblePAAE10urlRequest10Foundation0B0VSgvp":{"name":"urlRequest","abstract":"

    The URLRequest returned by discarding any Error encountered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLConvertible.html#/s:9Alamofire14URLConvertibleP5asURL10Foundation0D0VyKF":{"name":"asURL()","abstract":"

    Returns a URL from the conforming instance or throws.

    ","parent_name":"URLConvertible"},"Protocols/ServerTrustEvaluating.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"ServerTrustEvaluating"},"Protocols/DataDecoder.html#/s:9Alamofire11DataDecoderP6decode_4fromqd__qd__m_10Foundation0B0VtKSeRd__lF":{"name":"decode(_:from:)","abstract":"

    Decode Data into the provided type.

    ","parent_name":"DataDecoder"},"Protocols/EmptyResponse.html#/s:9Alamofire13EmptyResponseP10emptyValuexyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"EmptyResponse"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP05emptyB5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE26defaultEmptyRequestMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultEmptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE012defaultEmptyB5CodesShySiGvpZ":{"name":"defaultEmptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE018requestAllowsEmptyB4DataySbSg10Foundation10URLRequestVSgF":{"name":"requestAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE019responseAllowsEmptyB4DataySbSgSo17NSHTTPURLResponseCSgF":{"name":"responseAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE05emptyB7Allowed10forRequest8responseSb10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgtF":{"name":"emptyResponseAllowed(forRequest:response:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this DownloadResponseSerializerType.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP09serializeB07request8response7fileURL5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0J0VSgs5Error_pSgtKF":{"name":"serializeDownload(request:response:fileURL:error:)","abstract":"

    The function used to serialize the downloaded data in response handlers.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this serializer.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","abstract":"

    The function used to serialize the response data in response handlers.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestRetrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","abstract":"

    Determines whether the Request should be retried by calling the completion closure.

    ","parent_name":"RequestRetrier"},"Protocols/RequestAdapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","abstract":"

    Inspects and adapts the specified URLRequest in some manner and calls the completion handler with the AFResult.

    ","parent_name":"RequestAdapter"},"Protocols/UploadableConvertible.html#/s:9Alamofire21UploadableConvertibleP06createB0AA13UploadRequestC0B0OyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"UploadableConvertible"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP20sessionConfigurationSo012NSURLSessionE0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP11retryResult3for5dueTo10completionyAA0B0C_s5Error_pyAA05RetryE0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP05retryB0_9withDelayyAA0B0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP06cancelB0yyAA0B0CF":{"name":"cancelRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP014cancelDownloadB0_21byProducingResumeDatayAA0eB0C_y10Foundation0I0VSgctF":{"name":"cancelDownloadRequest(_:byProducingResumeData:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP07suspendB0yyAA0B0CF":{"name":"suspendRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP06resumeB0yyAA0B0CF":{"name":"resumeRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RedirectHandler.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","abstract":"

    Determines how the HTTP redirect response should be redirected to the new request.

    ","parent_name":"RedirectHandler"},"Protocols/ParameterEncoding.html#/s:9Alamofire17ParameterEncodingP6encode_4with10Foundation10URLRequestVAA0G11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"ParameterEncoding"},"Protocols/ParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","abstract":"

    Encode the provided Encodable parameters into request.

    ","parent_name":"ParameterEncoder"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","abstract":"

    The DispatchQueue onto which Alamofire’s root CompositeEventMonitor will dispatch events. Defaults to .main.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Event called during URLSessionDelegate‘s urlSession(_:didBecomeInvalidWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didReceive:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:needNewBodyStream:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didFinishCollecting:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didCompleteWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:taskIsWaitingForConnectivity:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:didReceive:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:willCacheResponse:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didFinishDownloadingTo:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","abstract":"

    Event called when a URLRequest is first created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","abstract":"

    Event called when the attempt to create a URLRequest from a Request‘s original URLRequestConvertible value fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","abstract":"

    Event called when a RequestAdapter adapts the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","abstract":"

    Event called when a RequestAdapter fails to adapt the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","abstract":"

    Event called when a URLSessionTask subclass instance is created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","abstract":"

    Event called when a Request receives a URLSessionTaskMetrics value.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","abstract":"

    Event called when a Request fails due to an error created by Alamofire. e.g. When certificat pinning fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","abstract":"

    Event called when a Request‘s task completes, possibly with an error. A Request may recieve this event","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","abstract":"

    Event called when a Request is about to be retried.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","abstract":"

    Event called when a Request finishes and response serializers are being called.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","abstract":"

    Event called when a Request receives a resume call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is resumed.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","abstract":"

    Event called when a Request receives a suspend call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is suspended.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","abstract":"

    Event called when a Request receives a cancel call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is cancelled.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","abstract":"

    Event called when a DataRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest creates a DataResponse<Data?> value without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest calls a ResponseSerializer and creates a generic DataResponse<Value>.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","abstract":"

    Event called when an UploadRequest creates its Uploadable value, indicating the type of upload it represents.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","abstract":"

    Event called when an UploadRequest failes to create its Uploadable value due to an error.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","abstract":"

    Event called when an UploadRequest provides the InputStream from its Uploadable value. This only occurs if","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","abstract":"

    Event called when a DownloadRequest‘s URLSessionDownloadTask finishes and the temporary file has been moved.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","abstract":"

    Event called when a DownloadRequest‘s Destination closure is called and creates the destination URL the","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","abstract":"

    Event called when a DownloadRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest creates a DownloadResponse<URL?> without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest calls a DownloadResponseSerializer and creates a generic DownloadResponse<Value>

    ","parent_name":"EventMonitor"},"Protocols/CachedResponseHandler.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","abstract":"

    Determines whether the HTTP response should be stored in the cache.

    ","parent_name":"CachedResponseHandler"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP0B4TypeQa":{"name":"ExtendedType","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGmvpZ":{"name":"af","abstract":"

    Static Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGvp":{"name":"af","abstract":"

    Instance Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html":{"name":"AlamofireExtended","abstract":"

    Protocol describing the af extension points for Alamofire extended types.

    "},"Protocols/CachedResponseHandler.html":{"name":"CachedResponseHandler","abstract":"

    A type that handles whether the data task should store the HTTP response in the cache.

    "},"Protocols/EventMonitor.html":{"name":"EventMonitor","abstract":"

    Protocol outlining the lifetime events inside Alamofire. It includes both events received from the various"},"Protocols/ParameterEncoder.html":{"name":"ParameterEncoder","abstract":"

    A type that can encode any Encodable type into a URLRequest.

    "},"Protocols/ParameterEncoding.html":{"name":"ParameterEncoding","abstract":"

    A type used to define how a set of parameters are applied to a URLRequest.

    "},"Protocols/RedirectHandler.html":{"name":"RedirectHandler","abstract":"

    A type that handles how an HTTP redirect response from a remote server should be redirected to the new request.

    "},"Protocols/RequestDelegate.html":{"name":"RequestDelegate","abstract":"

    Protocol abstraction for Request‘s communication back to the SessionDelegate.

    "},"Protocols/UploadableConvertible.html":{"name":"UploadableConvertible","abstract":"

    Undocumented

    "},"Protocols.html#/s:9Alamofire17UploadConvertibleP":{"name":"UploadConvertible","abstract":"

    Undocumented

    "},"Protocols/RequestAdapter.html":{"name":"RequestAdapter","abstract":"

    A type that can inspect and optionally adapt a URLRequest in some manner if necessary.

    "},"Protocols/RequestRetrier.html":{"name":"RequestRetrier","abstract":"

    A type that determines whether a request should be retried after being executed by the specified session manager"},"Protocols/RequestInterceptor.html":{"name":"RequestInterceptor","abstract":"

    A type that intercepts requests to potentially adapt and retry them.

    "},"Protocols/DataResponseSerializerProtocol.html":{"name":"DataResponseSerializerProtocol","abstract":"

    The type to which all data response serializers must conform in order to serialize a response.

    "},"Protocols/DownloadResponseSerializerProtocol.html":{"name":"DownloadResponseSerializerProtocol","abstract":"

    The type to which all download response serializers must conform in order to serialize a response.

    "},"Protocols/ResponseSerializer.html":{"name":"ResponseSerializer","abstract":"

    A serializer that can handle both data and download responses.

    "},"Protocols/EmptyResponse.html":{"name":"EmptyResponse","abstract":"

    A protocol for a type representing an empty response. Use T.emptyValue to get an instance.

    "},"Protocols/DataDecoder.html":{"name":"DataDecoder","abstract":"

    Any type which can decode Data.

    "},"Protocols/ServerTrustEvaluating.html":{"name":"ServerTrustEvaluating","abstract":"

    A protocol describing the API used to evaluate server trusts.

    "},"Protocols/URLConvertible.html":{"name":"URLConvertible","abstract":"

    Types adopting the URLConvertible protocol can be used to construct URLs, which can then be used to construct"},"Protocols/URLRequestConvertible.html":{"name":"URLRequestConvertible","abstract":"

    Types adopting the URLRequestConvertible protocol can be used to safely construct URLRequests.

    "},"Functions.html#/s:9Alamofire2eeoiySbAA26NetworkReachabilityManagerC0cD6StatusO_AFtF":{"name":"==(_:_:)","abstract":"

    Returns whether the two network reachability status values are equal.

    "},"Extensions/URLComponents.html#/s:10Foundation13URLComponentsV9AlamofireE5asURLAA0E0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if the self‘s url is not nil, otherwise throws.

    ","parent_name":"URLComponents"},"Extensions/URL.html#/s:10Foundation3URLV9AlamofireE02asB0ACyKF":{"name":"asURL()","abstract":"

    Returns self.

    ","parent_name":"URL"},"Extensions/String.html#/s:SS9AlamofireE5asURL10Foundation0C0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if self can be used to initialize a URL instance, otherwise throws.

    ","parent_name":"String"},"Extensions/Array.html#/s:Sa9AlamofireAA21ServerTrustEvaluating_pRszlE8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"Array"},"Extensions/CharacterSet.html#/s:10Foundation12CharacterSetV9AlamofireE17afURLQueryAllowedACvpZ":{"name":"afURLQueryAllowed","abstract":"

    Creates a CharacterSet from RFC 3986 allowed characters.

    ","parent_name":"CharacterSet"},"Extensions/Notification.html#/s:10Foundation12NotificationV9AlamofireE7requestAD7RequestCSgvp":{"name":"request","abstract":"

    The Request contained by the instance’s userInfo, nil otherwise.

    ","parent_name":"Notification"},"Extensions/URLSessionConfiguration.html#/s:So25NSURLSessionConfigurationC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns httpAdditionalHeaders as HTTPHeaders.

    ","parent_name":"URLSessionConfiguration"},"Extensions/HTTPURLResponse.html#/s:So17NSHTTPURLResponseC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHeaderFields as HTTPHeaders.

    ","parent_name":"HTTPURLResponse"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE7headersAD11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHTTPHeaderFields as HTTPHeaders.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE02asB0ACyKF":{"name":"asURLRequest()","abstract":"

    Returns self.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE3url6method7headersAcD14URLConvertible_p_AD10HTTPMethodOAD11HTTPHeadersVSgtKcfc":{"name":"init(url:method:headers:)","abstract":"

    Creates an instance with the specified url, method, and headers.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE6methodAD10HTTPMethodOSgvp":{"name":"method","abstract":"

    Returns the httpMethod as Alamofire’s HTTPMethod type.

    ","parent_name":"URLRequest"},"Extensions/Error.html#/s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp":{"name":"asAFError","abstract":"

    Returns the instance cast as an AFError.

    ","parent_name":"Error"},"Extensions/Error.html":{"name":"Error"},"Extensions/URLRequest.html":{"name":"URLRequest"},"Extensions/HTTPURLResponse.html":{"name":"HTTPURLResponse"},"Extensions/URLSessionConfiguration.html":{"name":"URLSessionConfiguration"},"Extensions/Notification.html":{"name":"Notification"},"Extensions/CharacterSet.html":{"name":"CharacterSet"},"Extensions/Array.html":{"name":"Array"},"Extensions/String.html":{"name":"String"},"Extensions/URL.html":{"name":"URL"},"Extensions/URLComponents.html":{"name":"URLComponents"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO5retryyA2CmF":{"name":"retry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO14retryWithDelayyACSdcACmF":{"name":"retryWithDelay(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB0yA2CmF":{"name":"doNotRetry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB9WithErroryACs0G0_pcACmF":{"name":"doNotRetryWithError(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7connectyA2CmF":{"name":"connect","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO6deleteyA2CmF":{"name":"delete","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3getyA2CmF":{"name":"get","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4headyA2CmF":{"name":"head","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7optionsyA2CmF":{"name":"options","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5patchyA2CmF":{"name":"patch","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4postyA2CmF":{"name":"post","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3putyA2CmF":{"name":"put","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5traceyA2CmF":{"name":"trace","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtFZ":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlFZ":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtFZ":{"name":"request(_:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to execute the specified urlRequest.

    ","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlFZ":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to execute the specified urlRequest and download","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Creates a DownloadRequest using the SessionManager.default from the resumeData produced from a previous","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the fileURL specified","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using the SessionManager.default to upload the contents of the fileURL specificed","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV4hostSSvp":{"name":"host","abstract":"

    The host for which the evaluation was performed.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV5trustSo03SecD3Refavp":{"name":"trust","abstract":"

    The SecTrust value which was evaluated.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6statuss5Int32Vvp":{"name":"status","abstract":"

    The OSStatus of evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6resultSo03SecD10ResultTypeVvp":{"name":"result","abstract":"

    The result of the evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html":{"name":"Output","abstract":"

    The output of a server trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noRequiredEvaluatoryAESS_tcAEmF":{"name":"noRequiredEvaluator(host:)","abstract":"

    Undocumented

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noCertificatesFoundyA2EmF":{"name":"noCertificatesFound","abstract":"

    No certificates were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO17noPublicKeysFoundyA2EmF":{"name":"noPublicKeysFound","abstract":"

    No public keys were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23policyApplicationFailedyAESo03SecD3Refa_So0j6PolicyK0as5Int32VtcAEmF":{"name":"policyApplicationFailed(trust:policy:status:)","abstract":"

    During evaluation, application of the associated SecPolicy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO31settingAnchorCertificatesFailedyAEs5Int32V_SaySo17SecCertificateRefaGtcAEmF":{"name":"settingAnchorCertificatesFailed(status:certificates:)","abstract":"

    During evaluation, setting the associated anchor certificates failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO30revocationPolicyCreationFailedyA2EmF":{"name":"revocationPolicyCreationFailed","abstract":"

    During evaluation, creation of the revocation policy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23defaultEvaluationFailedyA2E6OutputV_tcAEmF":{"name":"defaultEvaluationFailed(output:)","abstract":"

    Default evaluation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO20hostValidationFailedyA2E6OutputV_tcAEmF":{"name":"hostValidationFailed(output:)","abstract":"

    Host validation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO21revocationCheckFailedyA2E6OutputV_AA010RevocationD9EvaluatorC7OptionsVtcAEmF":{"name":"revocationCheckFailed(output:options:)","abstract":"

    Revocation check failed with the associated Output and options.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO24certificatePinningFailedyAESS_So03SecD3RefaSaySo0j11CertificateK0aGAKtcAEmF":{"name":"certificatePinningFailed(host:trust:pinnedCertificates:serverCertificates:)","abstract":"

    Certificate pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO22publicKeyPinningFailedyAESS_So03SecD3RefaSaySo0khL0aGAKtcAEmF":{"name":"publicKeyPinningFailed(host:trust:pinnedKeys:serverKeys:)","abstract":"

    Public key pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO24inputDataNilOrZeroLengthyA2EmF":{"name":"inputDataNilOrZeroLength","abstract":"

    The server response contained no data or the data was zero length.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO12inputFileNilyA2EmF":{"name":"inputFileNil","abstract":"

    The file containing the server response did not exist.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO19inputFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"inputFileReadFailed(at:)","abstract":"

    The file containing the server response could not be read from the associated URL.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO06stringD6FailedyAESS10FoundationE8EncodingV_tcAEmF":{"name":"stringSerializationFailed(encoding:)","abstract":"

    String serialization failed using the provided String.Encoding.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonSerializationFailed(error:)","abstract":"

    JSON serialization failed with an underlying system error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO14decodingFailedyAEs5Error_p_tcAEmF":{"name":"decodingFailed(error:)","abstract":"

    A DataDecoder failed to decode the response due to the associated Error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO012invalidEmptyC0yAESS_tcAEmF":{"name":"invalidEmptyResponse(type:)","abstract":"

    Generic serialization failed for an empty response that wasn’t type Empty but instead the associated type.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO11dataFileNilyA2EmF":{"name":"dataFileNil","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18dataFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"dataFileReadFailed(at:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18missingContentTypeyAESaySSG_tcAEmF":{"name":"missingContentType(acceptableContentTypes:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO23unacceptableContentTypeyAESaySSG_SStcAEmF":{"name":"unacceptableContentType(acceptableContentTypes:responseContentType:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO22unacceptableStatusCodeyAESi_tcAEmF":{"name":"unacceptableStatusCode(code:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO18bodyPartURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFilenameInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFilenameInvalid(in:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO24bodyPartFileNotReachableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileNotReachable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartFileNotReachableWithErroryAE10Foundation3URLV_s0M0_ptcAEmF":{"name":"bodyPartFileNotReachableWithError(atURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFileIsDirectoryyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileIsDirectory(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO28bodyPartFileSizeNotAvailableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileSizeNotAvailable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO36bodyPartFileSizeQueryFailedWithErroryAE10Foundation3URLV_s0N0_ptcAEmF":{"name":"bodyPartFileSizeQueryFailedWithError(forURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartInputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartInputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO26outputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO29outputStreamFileAlreadyExistsyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamFileAlreadyExists(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO22outputStreamURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23outputStreamWriteFailedyAEs5Error_p_tcAEmF":{"name":"outputStreamWriteFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO21inputStreamReadFailedyAEs5Error_p_tcAEmF":{"name":"inputStreamReadFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO3urlyA2GmF":{"name":"url","abstract":"

    The URL was missing or unable to be extracted from the passed URLRequest or during encoding.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO10httpMethodyAGSS_tcAGmF":{"name":"httpMethod(rawValue:)","abstract":"

    The HTTPMethod could not be extracted from the passed URLRequest.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html":{"name":"RequiredComponent","abstract":"

    Possible missing components.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO24missingRequiredComponentyA2E0hI0OcAEmF":{"name":"missingRequiredComponent(_:)","abstract":"

    A RequiredComponent was missing during encoding.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO13encoderFailedyAEs5Error_p_tcAEmF":{"name":"encoderFailed(error:)","abstract":"

    The underlying encoder failed with the associated error.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO10missingURLyA2EmF":{"name":"missingURL","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonEncodingFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html":{"name":"ParameterEncodingFailureReason","abstract":"

    The underlying reason the parameter encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ParameterEncoderFailureReason.html":{"name":"ParameterEncoderFailureReason","abstract":"

    Underlying reason the parameter encoder error occured.

    ","parent_name":"AFError"},"Enums/AFError/MultipartEncodingFailureReason.html":{"name":"MultipartEncodingFailureReason","abstract":"

    The underlying reason the multipart encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseValidationFailureReason.html":{"name":"ResponseValidationFailureReason","abstract":"

    The underlying reason the response validation error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseSerializationFailureReason.html":{"name":"ResponseSerializationFailureReason","abstract":"

    The underlying reason the response serialization error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ServerTrustFailureReason.html":{"name":"ServerTrustFailureReason","abstract":"

    Underlying reason a server trust evaluation error occured.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20sessionDeinitializedyA2CmF":{"name":"sessionDeinitialized","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18sessionInvalidatedyACs5Error_pSg_tcACmF":{"name":"sessionInvalidated(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19explicitlyCancelledyA2CmF":{"name":"explicitlyCancelled","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO10invalidURLyAcA14URLConvertible_p_tcACmF":{"name":"invalidURL(url:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23parameterEncodingFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22parameterEncoderFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncoderFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23multipartEncodingFailedyA2C09MultipartD13FailureReasonO_tcACmF":{"name":"multipartEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23requestAdaptationFailedyACs5Error_p_tcACmF":{"name":"requestAdaptationFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24responseValidationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseValidationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27responseSerializationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseSerializationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27serverTrustEvaluationFailedyA2C06ServerD13FailureReasonO_tcACmF":{"name":"serverTrustEvaluationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18requestRetryFailedyACs5Error_p_sAE_ptcACmF":{"name":"requestRetryFailed(retryError:originalError:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27isSessionDeinitializedErrorSbvp":{"name":"isSessionDeinitializedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isSessionInvalidatedErrorSbvp":{"name":"isSessionInvalidatedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO26isExplicitlyCancelledErrorSbvp":{"name":"isExplicitlyCancelledError","abstract":"

    Returns whether the instance is .explicitlyCancelled.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO17isInvalidURLErrorSbvp":{"name":"isInvalidURLError","abstract":"

    Returns whether the instance is .invalidURL.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isParameterEncodingErrorSbvp":{"name":"isParameterEncodingError","abstract":"

    Returns whether the instance is .parameterEncodingFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23isParameterEncoderErrorSbvp":{"name":"isParameterEncoderError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isMultipartEncodingErrorSbvp":{"name":"isMultipartEncodingError","abstract":"

    Returns whether the instance is .multipartEncodingFailed. When true, the url and underlyingError","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isRequestAdaptationErrorSbvp":{"name":"isRequestAdaptationError","abstract":"

    Returns whether the instance is .requestAdaptationFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isResponseValidationErrorSbvp":{"name":"isResponseValidationError","abstract":"

    Returns whether the instance is .responseValidationFailed. When true, the acceptableContentTypes,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isResponseSerializationErrorSbvp":{"name":"isResponseSerializationError","abstract":"

    Returns whether the instance is .responseSerializationFailed. When true, the failedStringEncoding and","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isServerTrustEvaluationErrorSbvp":{"name":"isServerTrustEvaluationError","abstract":"

    Returns whether the instance is .serverTrustEvaluationFailed.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19isRequestRetryErrorSbvp":{"name":"isRequestRetryError","abstract":"

    Returns whether the instance is requestRetryFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO14urlConvertibleAA14URLConvertible_pSgvp":{"name":"urlConvertible","abstract":"

    The URLConvertible associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO3url10Foundation3URLVSgvp":{"name":"url","abstract":"

    The URL associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO15underlyingErrors0D0_pSgvp":{"name":"underlyingError","abstract":"

    The underlying Error responsible for generating the failure associated with .sessionInvalidated,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22acceptableContentTypesSaySSGSgvp":{"name":"acceptableContentTypes","abstract":"

    The acceptable Content-Types of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19responseContentTypeSSSgvp":{"name":"responseContentType","abstract":"

    The response Content-Type of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO12responseCodeSiSgvp":{"name":"responseCode","abstract":"

    The response code of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20failedStringEncodingSS10FoundationE0E0VSgvp":{"name":"failedStringEncoding","abstract":"

    The String.Encoding associated with a failed .stringResponse() call.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"AFError"},"Enums/AFError.html":{"name":"AFError","abstract":"

    AFError is the error type returned by Alamofire. It encompasses a few different types of errors, each with"},"Enums/AF.html":{"name":"AF","abstract":"

    Global namespace containing API for the default Session instance.

    "},"Enums/HTTPMethod.html":{"name":"HTTPMethod","abstract":"

    HTTP method definitions.

    "},"Enums/RetryResult.html":{"name":"RetryResult","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html#/s:9Alamofire15SessionDelegateC11fileManagerACSo06NSFileE0C_tcfc":{"name":"init(fileManager:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:didBecomeInvalidWithError:":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didReceiveChallenge:completionHandler:":{"name":"urlSession(_:task:didReceive:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:needNewBodyStream:":{"name":"urlSession(_:task:needNewBodyStream:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didFinishCollectingMetrics:":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didCompleteWithError:":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:taskIsWaitingForConnectivity:":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:didReceiveData:":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:willCacheResponse:completionHandler:":{"name":"urlSession(_:dataTask:willCacheResponse:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didFinishDownloadingToURL:":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/Session.html#/s:9Alamofire7SessionC7defaultACvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8delegateAA0B8DelegateCvp":{"name":"delegate","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC9rootQueueSo17OS_dispatch_queueCvp":{"name":"rootQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12requestQueueSo17OS_dispatch_queueCvp":{"name":"requestQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11interceptorAA18RequestInterceptor_pSgvp":{"name":"interceptor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serverTrustManagerAA06ServerdE0CSgvp":{"name":"serverTrustManager","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7sessionSo12NSURLSessionCvp":{"name":"session","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12eventMonitorAA014CompositeEventD0Cvp":{"name":"eventMonitor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20defaultEventMonitorsSayAA0D7Monitor_pGvp":{"name":"defaultEventMonitors","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC24startRequestsImmediatelySbvp":{"name":"startRequestsImmediately","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7session8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo12NSURLSessionC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(session:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13configuration8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo25NSURLSessionConfigurationC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(configuration:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtF":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlF":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtF":{"name":"request(_:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlF":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtF":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20sessionConfigurationSo012NSURLSessionD0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11retryResult3for5dueTo10completionyAA7RequestC_s5Error_pyAA05RetryD0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12retryRequest_9withDelayyAA0D0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13cancelRequestyyAA0D0CF":{"name":"cancelRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC21cancelDownloadRequest_21byProducingResumeDatayAA0dE0C_y10Foundation0I0VSgctF":{"name":"cancelDownloadRequest(_:byProducingResumeData:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC14suspendRequestyyAA0D0CF":{"name":"suspendRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13resumeRequestyyAA0D0CF":{"name":"resumeRequest(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request3forAA7RequestCSgSo16NSURLSessionTaskC_tF":{"name":"request(for:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15didCompleteTaskyySo012NSURLSessionE0CF":{"name":"didCompleteTask(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC10credential3for2inSo15NSURLCredentialCSgSo16NSURLSessionTaskC_So20NSURLProtectionSpaceCtF":{"name":"credential(for:in:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC017cancelRequestsForB12Invalidation4withys5Error_pSg_tF":{"name":"cancelRequestsForSessionInvalidation(with:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/DisabledEvaluator.html#/s:9Alamofire17DisabledEvaluatorCACycfc":{"name":"init()","abstract":"

    Undocumented

    ","parent_name":"DisabledEvaluator"},"Classes/DisabledEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DisabledEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire23CompositeTrustEvaluatorC10evaluatorsACSayAA06ServerC10Evaluating_pG_tcfc":{"name":"init(evaluators:)","abstract":"

    Creates a CompositeTrustEvaluator.

    ","parent_name":"CompositeTrustEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"CompositeTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire24PublicKeysTrustEvaluatorC4keys24performDefaultValidation12validateHostACSaySo9SecKeyRefaG_S2btcfc":{"name":"init(keys:performDefaultValidation:validateHost:)","abstract":"

    Creates a PublicKeysTrustEvaluator.

    ","parent_name":"PublicKeysTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PublicKeysTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire32PinnedCertificatesTrustEvaluatorC12certificates016acceptSelfSignedC024performDefaultValidation12validateHostACSaySo17SecCertificateRefaG_S3btcfc":{"name":"init(certificates:acceptSelfSignedCertificates:performDefaultValidation:validateHost:)","abstract":"

    Creates a PinnedCertificatesTrustEvaluator.

    ","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3crlAEvpZ":{"name":"crl","abstract":"

    Perform revocation checking using the CRL (Certification Revocation List) method.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV21networkAccessDisabledAEvpZ":{"name":"networkAccessDisabled","abstract":"

    Consult only locally cached replies; do not use network access.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV4ocspAEvpZ":{"name":"ocsp","abstract":"

    Perform revocation checking using OCSP (Online Certificate Status Protocol).

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV9preferCRLAEvpZ":{"name":"preferCRL","abstract":"

    Prefer CRL revocation checking over OCSP; by default, OCSP is preferred.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV23requirePositiveResponseAEvpZ":{"name":"requirePositiveResponse","abstract":"

    Require a positive response to pass the policy. If the flag is not set, revocation checking is done on a","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3anyAEvpZ":{"name":"any","abstract":"

    Perform either OCSP or CRL checking. The checking is performed according to the method(s) specified in the","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueSuvp":{"name":"rawValue","abstract":"

    The raw value of the option.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueAESu_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates an Options value with the given CFOptionFlags.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html":{"name":"Options","abstract":"

    Represents the options to be use when evaluating the status of a certificate.","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire24RevocationTrustEvaluatorC24performDefaultValidation12validateHost7optionsACSb_SbAC7OptionsVtcfc":{"name":"init(performDefaultValidation:validateHost:options:)","abstract":"

    Creates a RevocationTrustEvaluator.

    ","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"RevocationTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21DefaultTrustEvaluatorC12validateHostACSb_tcfc":{"name":"init(validateHost:)","abstract":"

    Creates a DefaultTrustEvalutor.

    ","parent_name":"DefaultTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DefaultTrustEvaluator"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluatedSbvp":{"name":"allHostsMustBeEvaluated","abstract":"

    Determines whether all hosts for this ServerTrustManager must be evaluated. Defaults to true.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC10evaluatorsSDySSAA0bC10Evaluating_pGvp":{"name":"evaluators","abstract":"

    The dictionary of policies mapped to a particular host.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluated10evaluatorsACSb_SDySSAA0bC10Evaluating_pGtcfc":{"name":"init(allHostsMustBeEvaluated:evaluators:)","abstract":"

    Initializes the ServerTrustManager instance with the given evaluators.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC06serverC9Evaluator7forHostAA0bC10Evaluating_pSgSS_tKF":{"name":"serverTrustEvaluator(forHost:)","abstract":"

    Returns the ServerTrustEvaluating value for the given host, if one is set.

    ","parent_name":"ServerTrustManager"},"Classes/ConnectionLostRetryPolicy.html#/s:9Alamofire25ConnectionLostRetryPolicyC10retryLimit22exponentialBackoffBase0hI5Scale20retryableHTTPMethodsACSu_SuSdShyAA10HTTPMethodOGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:)","abstract":"

    Creates a ConnectionLostRetryPolicy instance from the specified parameters.

    ","parent_name":"ConnectionLostRetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC07defaultB5LimitSuvpZ":{"name":"defaultRetryLimit","abstract":"

    The default retry limit for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultExponentialBackoffBaseSuvpZ":{"name":"defaultExponentialBackoffBase","abstract":"

    The default exponential backoff base for retry policies (must be a minimum of 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC30defaultExponentialBackoffScaleSdvpZ":{"name":"defaultExponentialBackoffScale","abstract":"

    The default exponential backoff scale for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC27defaultRetryableHTTPMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultRetryableHTTPMethods","abstract":"

    The default HTTP methods to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC31defaultRetryableHTTPStatusCodesShySiGvpZ":{"name":"defaultRetryableHTTPStatusCodes","abstract":"

    The default HTTP status codes to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultRetryableURLErrorCodesShy10Foundation0F0V4CodeVGvpZ":{"name":"defaultRetryableURLErrorCodes","abstract":"

    The default URL error codes to retry.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimitSuvp":{"name":"retryLimit","abstract":"

    The total number of times the request is allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22exponentialBackoffBaseSuvp":{"name":"exponentialBackoffBase","abstract":"

    The base of the exponential backoff policy (should always be greater than or equal to 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC23exponentialBackoffScaleSdvp":{"name":"exponentialBackoffScale","abstract":"

    The scale of the exponential backoff.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC20retryableHTTPMethodsShyAA10HTTPMethodOGvp":{"name":"retryableHTTPMethods","abstract":"

    The HTTP methods that are allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC24retryableHTTPStatusCodesShySiGvp":{"name":"retryableHTTPStatusCodes","abstract":"

    The HTTP status codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22retryableURLErrorCodesShy10Foundation0E0V4CodeVGvp":{"name":"retryableURLErrorCodes","abstract":"

    The URL error codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimit22exponentialBackoffBase0fG5Scale20retryableHTTPMethods0J15HTTPStatusCodes0j8URLErrorM0ACSu_SuSdShyAA10HTTPMethodOGShySiGShy10Foundation0N0V4CodeVGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:retryableHTTPStatusCodes:retryableURLErrorCodes:)","abstract":"

    Creates an ExponentialBackoffRetryPolicy from the specified parameters.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RetryPolicy"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoderAA11DataDecoder_pvp":{"name":"decoder","abstract":"

    The JSONDecoder instance used to decode responses.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoder05emptyC5Codes0F14RequestMethodsACyxGAA11DataDecoder_p_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(decoder:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the values provided.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DecodableResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7optionsSo20NSJSONReadingOptionsVvp":{"name":"options","abstract":"

    JSONSerialization.ReadingOptions used when serializing a response.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC18emptyResponseCodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7options18emptyResponseCodes0E14RequestMethodsACSo20NSJSONReadingOptionsV_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(options:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"JSONResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encodingSS10FoundationE8EncodingVSgvp":{"name":"encoding","abstract":"

    Optional string encoding used to validate the response.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encoding05emptyC5Codes0F14RequestMethodsACSS10FoundationE8EncodingVSg_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(encoding:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"StringResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5Codes0E14RequestMethodsACShySiG_ShyAA10HTTPMethodOGtcfc":{"name":"init(emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the provided values.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DataResponseSerializer"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adaptersSayAA14RequestAdapter_pGvp":{"name":"adapters","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8retriersSayAA14RequestRetrier_pGvp":{"name":"retriers","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC12adaptHandler05retryD0ACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAHs5Error_pGctc_yAA7RequestC_AJsAM_pyAA05RetryI0Octctcfc":{"name":"init(adaptHandler:retryHandler:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC7adapter7retrierAcA14RequestAdapter_p_AA0E7Retrier_ptcfc":{"name":"init(adapter:retrier:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adapters8retriersACSayAA14RequestAdapter_pG_SayAA0E7Retrier_pGtcfc":{"name":"init(adapters:retriers:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Interceptor"},"Classes/Retrier.html#/s:9Alamofire7RetrierCyACyAA7RequestC_AA7SessionCs5Error_pyAA11RetryResultOctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Retrier"},"Classes/Retrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Retrier"},"Classes/Adapter.html#/s:9Alamofire7AdapterCyACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAFs5Error_pGctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Adapter"},"Classes/Adapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Adapter"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4datayAE10Foundation4DataVcAEmF":{"name":"data(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4fileyAE10Foundation3URLV_SbtcAEmF":{"name":"file(_:shouldRemove:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO6streamyAESo13NSInputStreamCcAEmF":{"name":"stream(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO06createD0AEyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html":{"name":"Uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC6uploadAA21UploadableConvertible_pvp":{"name":"upload","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC10uploadableAC10UploadableOSgvp":{"name":"uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC7cleanupyyF":{"name":"cleanup()","parent_name":"UploadRequest"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO7requestyAeA21URLRequestConvertible_pcAEmF":{"name":"request(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO10resumeDatayAE10Foundation0F0VcAEmF":{"name":"resumeData(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV29createIntermediateDirectoriesAEvpZ":{"name":"createIntermediateDirectories","abstract":"

    A DownloadOptions flag that creates intermediate directories for the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV18removePreviousFileAEvpZ":{"name":"removePreviousFile","abstract":"

    A DownloadOptions flag that removes a previous file from the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueSivp":{"name":"rawValue","abstract":"

    Returns the raw bitmask value of the option and satisfies the RawRepresentable protocol.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueAESi_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates a DownloadRequest.Options instance with the specified raw value.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html":{"name":"Options","abstract":"

    A collection of options to be executed prior to moving a downloaded file from the temporary URL to the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC11Destinationa":{"name":"Destination","abstract":"

    A closure executed once a download request has successfully completed in order to determine where to move the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC09suggestedB11Destination3for2in7options10Foundation3URLV011destinationJ0_AC7OptionsVAGtAJ_So17NSHTTPURLResponseCtcSo21NSSearchPathDirectoryV_So0nO10DomainMaskVAMtFZ":{"name":"suggestedDownloadDestination(for:in:options:)","abstract":"

    Creates a download file destination closure which uses the default file manager to move the temporary file to a","parent_name":"DownloadRequest"},"Classes/DownloadRequest/Downloadable.html":{"name":"Downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12downloadableAC12DownloadableOvp":{"name":"downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC4task13forResumeData5usingSo16NSURLSessionTaskC10Foundation0G0V_So0I0CtF":{"name":"task(forResumeData:using:)","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC6cancelACXDyF":{"name":"cancel()","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI3URLVSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation3URLVSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseData5queue17completionHandlerACXDSo012OS_dispatch_F0C_yAA0B8ResponseVy10Foundation0E0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response, a temporary URL and a","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DownloadRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC11convertibleAA21URLRequestConvertible_pvp":{"name":"convertible","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI0B0VSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC08responseB05queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC17responseDecodable5queue7decoder17completionHandlerACXDSo012OS_dispatch_F0C_AA0B7Decoder_pyAA0B8ResponseVyxGctSeRzlF":{"name":"responseDecodable(queue:decoder:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response and data, and returns whether the","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DataRequest"},"Classes/URLEncodedFormEncoder/Error.html#/s:9Alamofire21URLEncodedFormEncoderC5ErrorO17invalidRootObjectyAESScAEmF":{"name":"invalidRootObject(_:)","abstract":"

    An invalid root object was created by the encoder. Only keyed values are valid.

    ","parent_name":"Error"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO14percentEscapedyA2EmF":{"name":"percentEscaped","abstract":"

    Encodes spaces according to normal percent escaping rules (%20).

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO12plusReplacedyA2EmF":{"name":"plusReplaced","abstract":"

    Encodes spaces as +,

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    An empty set of square brackets ([]) are sppended to the key for every value.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    No brackets are appended to the key and the key is encoded as is.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Encodes true as 1, false as 0.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Encodes true as true, false as false.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html":{"name":"SpaceEncoding","abstract":"

    Configures how spaces are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/Error.html":{"name":"Error","abstract":"

    URLEncodedFormEncoder error.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncodingAC05ArrayF0Ovp":{"name":"arrayEncoding","abstract":"

    The ArrayEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC12boolEncodingAC04BoolF0Ovp":{"name":"boolEncoding","abstract":"

    The BoolEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13spaceEncodingAC05SpaceF0Ovp":{"name":"spaceEncoding","abstract":"

    The SpaceEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC17allowedCharacters10Foundation12CharacterSetVvp":{"name":"allowedCharacters","abstract":"

    The CharacterSet of allowed characters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncoding04boolF005spaceF017allowedCharactersA2C05ArrayF0O_AC04BoolF0OAC05SpaceF0O10Foundation12CharacterSetVtcfc":{"name":"init(arrayEncoding:boolEncoding:spaceEncoding:allowedCharacters:)","abstract":"

    Creates an instance from the supplied parameters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodeySSSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as a URL form encoded String.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodey10Foundation4DataVSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as Data. This is performed by first creating an encoded String and then returning the","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Applies the encoded query string to any existing query string for .get, .head, and .delete request.","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Applies the encoded query string to any existing query string from the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Applies the encoded query string to the httpBody of the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html":{"name":"Destination","abstract":"

    Defines where the URL-encoded string should be set for each URLRequest.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoderAA0bcE0Cvp":{"name":"encoder","abstract":"

    The URLEncodedFormEncoder to use.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The Destination for the URL-encoded string.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoder11destinationAcA0bcE0C_AC11DestinationOtcfc":{"name":"init(encoder:destination:)","abstract":"

    Creates an instance with the provided URLEncodedFormEncoder instance and Destination value.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"URLEncodedFormParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .prettyPrinted.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC10sortedKeysACvpZ":{"name":"sortedKeys","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .sortedKeys.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoder10Foundation11JSONEncoderCvp":{"name":"encoder","abstract":"

    JSONEncoder used to encode parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoderAC10Foundation11JSONEncoderC_tcfc":{"name":"init(encoder:)","abstract":"

    Creates an instance with the provided JSONEncoder.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"JSONParameterEncoder"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"AlamofireNotifications"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO11initializedyA2EmF":{"name":"initialized","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO7resumedyA2EmF":{"name":"resumed","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9suspendedyA2EmF":{"name":"suspended","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9cancelledyA2EmF":{"name":"cancelled","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html":{"name":"State","abstract":"

    State of the Request, with managed transitions between states set when calling resume(), suspend(), or","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id10Foundation4UUIDVvp":{"name":"id","abstract":"

    UUID prividing a unique identifier for the Request, used in the Hashable and Equatable conformances.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15underlyingQueueSo17OS_dispatch_queueCvp":{"name":"underlyingQueue","abstract":"

    The serial queue for all internal async actions.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    The queue used for all serialization actions. By default it’s a serial queue that targets underlyingQueue.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12eventMonitorAA05EventD0_pSgvp":{"name":"eventMonitor","abstract":"

    EventMonitor used for event callbacks.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11interceptorAA0B11Interceptor_pSgvp":{"name":"interceptor","abstract":"

    The Request‘s interceptor.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8delegateAA0B8Delegate_pSgvp":{"name":"delegate","abstract":"

    The Request‘s delegate.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5stateAC5StateOvp":{"name":"state","abstract":"

    State of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isCancelledSbvp":{"name":"isCancelled","abstract":"

    Returns whether state is .cancelled.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9isResumedSbvp":{"name":"isResumed","abstract":"

    Returns whether state is.resumed`.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isSuspendedSbvp":{"name":"isSuspended","abstract":"

    Returns whether state is .suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13isInitializedSbvp":{"name":"isInitialized","abstract":"

    Returns whether state is .initialized.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15ProgressHandlera":{"name":"ProgressHandler","abstract":"

    Closure type executed when monitoring the upload or download progress of a request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgressSo10NSProgressCvp":{"name":"uploadProgress","abstract":"

    Progress of the upload of the body of the executed URLRequest. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgressSo10NSProgressCvp":{"name":"downloadProgress","abstract":"

    Progress of the download of any response data. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10credentialSo15NSURLCredentialCSgvp":{"name":"credential","abstract":"

    URLCredential used for authentication challenges. Created by calling one of the authenticate methods.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8requestsSay10Foundation10URLRequestVGvp":{"name":"requests","abstract":"

    All URLRequests created on behalf of the Request, including original and adapted requests.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC05firstB010Foundation10URLRequestVSgvp":{"name":"firstRequest","abstract":"

    First URLRequest created on behalf of the Request. May not be the first one actually executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC04lastB010Foundation10URLRequestVSgvp":{"name":"lastRequest","abstract":"

    Last URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    Current URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC17performedRequestsSay10Foundation10URLRequestVGvp":{"name":"performedRequests","abstract":"

    URLRequests from all of the URLSessionTasks executed on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    HTTPURLResponse received from the server, if any. If the Request was retried, this is the response of the","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5tasksSaySo16NSURLSessionTaskCGvp":{"name":"tasks","abstract":"

    All URLSessionTasks created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9firstTaskSo012NSURLSessionD0CSgvp":{"name":"firstTask","abstract":"

    First URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8lastTaskSo012NSURLSessionD0CSgvp":{"name":"lastTask","abstract":"

    Last URLSessionTask crated on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC4taskSo16NSURLSessionTaskCSgvp":{"name":"task","abstract":"

    Current URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10allMetricsSaySo016NSURLSessionTaskD0CGvp":{"name":"allMetrics","abstract":"

    All URLSessionTaskMetrics gathered on behalf of the Request. Should correspond to the tasks created.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12firstMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"firstMetrics","abstract":"

    First URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11lastMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"lastMetrics","abstract":"

    Last URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    Current URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10retryCountSivp":{"name":"retryCount","abstract":"

    Number of times the Request has been retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5errors5Error_pSgvp":{"name":"error","abstract":"

    Error returned from Alamofire internally, from the network request directly, or any validators executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id15underlyingQueue013serializationE012eventMonitor11interceptor8delegateAC10Foundation4UUIDV_So17OS_dispatch_queueCAnA05EventH0_pSgAA0B11Interceptor_pSgAA0B8Delegate_ptcfc":{"name":"init(id:underlyingQueue:serializationQueue:eventMonitor:interceptor:delegate:)","abstract":"

    Default initializer for the Request superclass.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6cancelACXDyF":{"name":"cancel()","abstract":"

    Cancels the Request. Once cancelled, a Request can no longer be resumed or suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7suspendACXDyF":{"name":"suspend()","abstract":"

    Suspends the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6resumeACXDyF":{"name":"resume()","abstract":"

    Resumes the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate8username8password11persistenceACXDSS_SSSo26NSURLCredentialPersistenceVtF":{"name":"authenticate(username:password:persistence:)","abstract":"

    Associates a credential using the provided values with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate4withACXDSo15NSURLCredentialC_tF":{"name":"authenticate(with:)","abstract":"

    Associates the provided credential with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"downloadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is read from the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"uploadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is sent to the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8redirect5usingACXDAA15RedirectHandler_p_tF":{"name":"redirect(using:)","abstract":"

    Sets the redirect handler for the Request which will be used if a redirect response is encountered.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13cacheResponse5usingACXDAA06CachedD7Handler_p_tF":{"name":"cacheResponse(using:)","abstract":"

    Sets the cached response handler for the Request which will be used when attempting to cache a response.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7cleanupyyF":{"name":"cleanup()","abstract":"

    Final cleanup step executed when a Request finishes response serialization.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didResumeNotificationSo18NSNotificationNameavpZ":{"name":"didResumeNotification","abstract":"

    Posted when a Request is resumed. The Notification contains the resumed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC22didSuspendNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendNotification","abstract":"

    Posted when a Request is suspended. The Notification contains the suspended Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didCancelNotificationSo18NSNotificationNameavpZ":{"name":"didCancelNotification","abstract":"

    Posted when a Request is cancelled. The Notification contains the cancelled Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didFinishNotificationSo18NSNotificationNameavpZ":{"name":"didFinishNotification","abstract":"

    Posted when a Request is finished. The Notification contains the completed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didResumeTaskNotificationSo18NSNotificationNameavpZ":{"name":"didResumeTaskNotification","abstract":"

    Posted when a URLSessionTask is resumed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC26didSuspendTaskNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendTaskNotification","abstract":"

    Posted when a URLSessionTask is suspended. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didCancelTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCancelTaskNotification","abstract":"

    Posted when a URLSessionTask is cancelled. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC27didCompleteTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCompleteTaskNotification","abstract":"

    Posted when a URLSessionTask is completed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"Request"},"Classes/Request.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11descriptionSSvp":{"name":"description","abstract":"

    A textual representation of this instance, including the HTTPMethod and URL if the URLRequest has been","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    A textual representation of this instance in the form of a cURL command.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16ValidationResulta":{"name":"ValidationResult","abstract":"

    Used to represent whether a validation succeeded or failed.

    ","parent_name":"Request"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO14ethernetOrWiFiyA2EmF":{"name":"ethernetOrWiFi","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF":{"name":"wwan","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO7unknownyA2EmF":{"name":"unknown","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO12notReachableyA2EmF":{"name":"notReachable","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO9reachableyAeC14ConnectionTypeOcAEmF":{"name":"reachable(_:)","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html":{"name":"NetworkReachabilityStatus","abstract":"

    Defines the various states of network reachability.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager/ConnectionType.html":{"name":"ConnectionType","abstract":"

    Defines the various connection types detected by reachability flags.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8Listenera":{"name":"Listener","abstract":"

    A closure executed when the network reachability status changes. The closure takes a single argument: the","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC11isReachableSbvp":{"name":"isReachable","abstract":"

    Whether the network is currently reachable.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC17isReachableOnWWANSbvp":{"name":"isReachableOnWWAN","abstract":"

    Whether the network is currently reachable over the WWAN interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp":{"name":"isReachableOnEthernetOrWiFi","abstract":"

    Whether the network is currently reachable over Ethernet or WiFi interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC07networkC6StatusAC0bcF0Ovp":{"name":"networkReachabilityStatus","abstract":"

    The current network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp":{"name":"listenerQueue","abstract":"

    The dispatch queue to execute the listener closure on.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8listeneryAC0bC6StatusOcSgvp":{"name":"listener","abstract":"

    A closure executed when the network reachability status changes.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC5flagsSo09SCNetworkC5FlagsVSgvp":{"name":"flags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkcF0Vvp":{"name":"previousFlags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC4hostACSgSS_tcfc":{"name":"init(host:)","abstract":"

    Creates a NetworkReachabilityManager instance with the specified host.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCACSgycfc":{"name":"init()","abstract":"

    Creates a NetworkReachabilityManager instance that monitors the address 0.0.0.0.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC14startListeningSbyF":{"name":"startListening()","abstract":"

    Starts listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13stopListeningyyF":{"name":"stopListening()","abstract":"

    Stops listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC23encodingMemoryThresholds6UInt64VvpZ":{"name":"encodingMemoryThreshold","abstract":"

    Default memory threshold used when encoding MultipartFormData, in bytes.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11contentTypeSSvp":{"name":"contentType","abstract":"

    The Content-Type header value containing the boundary used to generate the multipart/form-data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC13contentLengths6UInt64Vvp":{"name":"contentLength","abstract":"

    The content length of all body parts used to generate the multipart/form-data not including the boundaries.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC8boundarySSvp":{"name":"boundary","abstract":"

    The boundary used to separate the body parts in the encoded form data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11fileManager8boundaryACSo06NSFileF0C_SSSgtcfc":{"name":"init(fileManager:boundary:)","abstract":"

    Creates a multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation0D0V_S2SSgAKtF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the data and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withNamey10Foundation3URLV_SStF":{"name":"append(_:withName:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation3URLV_S3StF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength4name8fileName8mimeTypeySo13NSInputStreamC_s6UInt64VS3StF":{"name":"append(_:withLength:name:fileName:mimeType:)","abstract":"

    Creates a body part from the stream and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength7headersySo13NSInputStreamC_s6UInt64VAA11HTTPHeadersVtF":{"name":"append(_:withLength:headers:)","abstract":"

    Creates a body part with the headers, stream and length and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6encode10Foundation0D0VyKF":{"name":"encode()","abstract":"

    Encodes all the appended body parts into a single Data value.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC012writeEncodedD02toy10Foundation3URLV_tKF":{"name":"writeEncodedData(to:)","abstract":"

    Writes the appended body parts into the given file URL.

    ","parent_name":"MultipartFormData"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtcSgvp":{"name":"sessionDidBecomeInvalidWithError","abstract":"

    Closure called on the urlSession(_:didBecomeInvalidWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0I4TaskCSo019NSURLAuthenticationH0CtcSgvp":{"name":"taskDidReceiveChallenge","abstract":"

    Closure called on the urlSession(_:task:didReceive:completionHandler:).

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0J4TaskCs5Int64VA2JtcSgvp":{"name":"taskDidSendBodyData","abstract":"

    Closure that receives urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskNeedNewBodyStream","abstract":"

    Closure called on the urlSession(_:task:needNewBodyStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0I4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp":{"name":"taskWillPerformHTTPRedirection","abstract":"

    Closure called on the urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0J4TaskCSo0jkI0CtcSgvp":{"name":"taskDidFinishCollectingMetrics","abstract":"

    Closure called on the urlSession(_:task:didFinishCollecting:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0H4TaskCs5Error_pSgtcSgvp":{"name":"taskDidComplete","abstract":"

    Closure called on the urlSession(_:task:didCompleteWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskIsWaitingForConnectivity","abstract":"

    Closure called on the urlSession(_:taskIsWaitingForConnectivity:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0jiF0C10Foundation0I0VtcSgvp":{"name":"dataTaskDidReceiveData","abstract":"

    Closure that recieves the urlSession(_:dataTask:didReceive:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0j4DataF0CSo19NSCachedURLResponseCtcSgvp":{"name":"dataTaskWillCacheResponse","abstract":"

    Closure called on the urlSession(_:dataTask:willCacheResponse:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0l8DownloadF0C10Foundation0K0VtcSgvp":{"name":"downloadTaskDidFinishDownloadingToURL","abstract":"

    Closure called on the urlSession(_:downloadTask:didFinishDownloadingTo:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0j8DownloadF0Cs5Int64VA2JtcSgvp":{"name":"downloadTaskDidWriteData","abstract":"

    Closure called on the urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0k8DownloadF0Cs5Int64VAJtcSgvp":{"name":"downloadTaskDidResumeAtOffset","abstract":"

    Closure called on the urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateURLRequestyAA7RequestC_10Foundation0H0VtcSgvp":{"name":"requestDidCreateURLRequest","abstract":"

    Closure called on the request(_:didCreateURLRequest:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateURLRequestWithErroryAA7RequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToCreateURLRequestWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC038requestDidAdaptInitialRequestToAdaptedI0yAA0I0C_10Foundation10URLRequestVAItcSgvp":{"name":"requestDidAdaptInitialRequestToAdaptedRequest","abstract":"

    Closure called on the request(_:didAdaptInitialRequest:to:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC40requestDidFailToAdaptURLRequestWithErroryAA7RequestC_10Foundation0J0Vs0L0_ptcSgvp":{"name":"requestDidFailToAdaptURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToAdaptURLRequest:withError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCreateTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCreateTask","abstract":"

    Closure called on the request(_:didCreateTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidGatherMetricsyAA7RequestC_So016NSURLSessionTaskH0CtcSgvp":{"name":"requestDidGatherMetrics","abstract":"

    Closure called on the request(_:didGatherMetrics:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32requestDidFailTaskEarlyWithErroryAA7RequestC_So012NSURLSessionH0Cs0K0_ptcSgvp":{"name":"requestDidFailTaskEarlyWithError","abstract":"

    Closure called on the request(_:didFailTask:earlyWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidCompleteTaskWithErroryAA7RequestC_So012NSURLSessionH0Cs0J0_pSgtcSgvp":{"name":"requestDidCompleteTaskWithError","abstract":"

    Closure called on the request(_:didCompleteTask:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestIsRetryingyAA7RequestCcSgvp":{"name":"requestIsRetrying","abstract":"

    Closure called on the requestIsRetrying(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidFinishyAA7RequestCcSgvp":{"name":"requestDidFinish","abstract":"

    Closure called on the requestDidFinish(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidResumeyAA7RequestCcSgvp":{"name":"requestDidResume","abstract":"

    Closure called on the requestDidResume(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidResumeTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidResumeTask","abstract":"

    Closure called on the request(_:didResumeTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestDidSuspendyAA7RequestCcSgvp":{"name":"requestDidSuspend","abstract":"

    Closure called on the requestDidSuspend(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21requestDidSuspendTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidSuspendTask","abstract":"

    Closure called on the request(_:didSuspendTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidCancelyAA7RequestCcSgvp":{"name":"requestDidCancel","abstract":"

    Closure called on the requestDidCancel(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCancelTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCancelTask","abstract":"

    Closure called on the request(_:didCancelTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC47requestDidValidateRequestResponseDataWithResultyAA0jH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG0J0VSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseDataWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:data:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidParseResponseyAA11DataRequestC_AA0iH0Vy10Foundation0I0VSgGtcSgvp":{"name":"requestDidParseResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateUploadableyAA13UploadRequestC_AF0H0OtcSgvp":{"name":"requestDidCreateUploadable","abstract":"

    Closure called on the request(_:didCreateUploadable:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateUploadableWithErroryAA13UploadRequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateUploadableWithError","abstract":"

    Closure called on the request(_:didFailToCreateUploadableWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28requestDidProvideInputStreamyAA13UploadRequestC_So07NSInputI0CtcSgvp":{"name":"requestDidProvideInputStream","abstract":"

    Closure called on the request(_:didProvideInputStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC46requestDidFinishDownloadingUsingTaskWithResultyAA15DownloadRequestC_So012NSURLSessionJ0Cs0L0Oy10Foundation3URLVs5Error_pGtcSgvp":{"name":"requestDidFinishDownloadingUsingTaskWithResult","abstract":"

    Closure called on the request(_:didFinishDownloadingUsing:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30requestDidCreateDestinationURLyAA15DownloadRequestC_10Foundation0I0VtcSgvp":{"name":"requestDidCreateDestinationURL","abstract":"

    Closure called on the request(_:didCreateDestinationURL:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC50requestDidValidateRequestResponseFileURLWithResultyAA08DownloadH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG3URLVSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseFileURLWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:temporaryURL:destinationURL:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidParseDownloadResponseyAA0H7RequestC_AA0hI0Vy10Foundation3URLVSgGtcSgvp":{"name":"requestDidParseDownloadResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC5queueACSo012OS_dispatch_E0C_tcfc":{"name":"init(queue:)","abstract":"

    Undocumented

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html":{"name":"CompositeEventMonitor","abstract":"

    An EventMonitor which can contain multiple EventMonitors and calls their methods on their queues.

    "},"Classes/ClosureEventMonitor.html":{"name":"ClosureEventMonitor","abstract":"

    EventMonitor that allows optional closures to be set to receive events.

    "},"Classes/MultipartFormData.html":{"name":"MultipartFormData","abstract":"

    Constructs multipart/form-data for uploads within an HTTP or HTTPS body. There are currently two ways to encode"},"Classes/NetworkReachabilityManager.html":{"name":"NetworkReachabilityManager","abstract":"

    The NetworkReachabilityManager class listens for reachability changes of hosts and addresses for both WWAN and"},"Classes/Request.html":{"name":"Request","abstract":"

    Request is the common superclass of all Alamofire request types and provides common state, delegate, and callback"},"Classes/AlamofireNotifications.html":{"name":"AlamofireNotifications","abstract":"

    EventMonitor that provides Alamofire’s notifications.

    "},"Classes/JSONParameterEncoder.html":{"name":"JSONParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as JSON body data.

    "},"Classes/URLEncodedFormParameterEncoder.html":{"name":"URLEncodedFormParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as URL-encoded query strings to be set on the URL or as body data, depending"},"Classes/URLEncodedFormEncoder.html":{"name":"URLEncodedFormEncoder","abstract":"

    An object that encodes instances into URL-encoded query strings.

    "},"Classes/DataRequest.html":{"name":"DataRequest","abstract":"

    Undocumented

    "},"Classes/DownloadRequest.html":{"name":"DownloadRequest","abstract":"

    Undocumented

    "},"Classes/UploadRequest.html":{"name":"UploadRequest","abstract":"

    Undocumented

    "},"Classes/Adapter.html":{"name":"Adapter","abstract":"

    Undocumented

    "},"Classes/Retrier.html":{"name":"Retrier","abstract":"

    Undocumented

    "},"Classes/Interceptor.html":{"name":"Interceptor","abstract":"

    Undocumented

    "},"Classes/DataResponseSerializer.html":{"name":"DataResponseSerializer","abstract":"

    A ResponseSerializer that performs minimal reponse checking and returns any response data as-is. By default, a"},"Classes/StringResponseSerializer.html":{"name":"StringResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a String. By default, a request returning nil or no"},"Classes/JSONResponseSerializer.html":{"name":"JSONResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data using JSONSerialization. By default, a request returning"},"Classes/DecodableResponseSerializer.html":{"name":"DecodableResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a generic value using any type that conforms to"},"Classes/RetryPolicy.html":{"name":"RetryPolicy","abstract":"

    A retry policy that retries requests using an exponential backoff for allowed HTTP methods and HTTP status codes"},"Classes/ConnectionLostRetryPolicy.html":{"name":"ConnectionLostRetryPolicy","abstract":"

    A retry policy that automatically retries idempotent requests for network connection lost errors. For more"},"Classes/ServerTrustManager.html":{"name":"ServerTrustManager","abstract":"

    Responsible for managing the mapping of ServerTrustEvaluating values to given hosts.

    "},"Classes/DefaultTrustEvaluator.html":{"name":"DefaultTrustEvaluator","abstract":"

    An evaluator which uses the default server trust evaluation while allowing you to control whether to validate the"},"Classes/RevocationTrustEvaluator.html":{"name":"RevocationTrustEvaluator","abstract":"

    An evaluator which Uses the default and revoked server trust evaluations allowing you to control whether to validate"},"Classes/PinnedCertificatesTrustEvaluator.html":{"name":"PinnedCertificatesTrustEvaluator","abstract":"

    Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/PublicKeysTrustEvaluator.html":{"name":"PublicKeysTrustEvaluator","abstract":"

    Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/CompositeTrustEvaluator.html":{"name":"CompositeTrustEvaluator","abstract":"

    Uses the provided evaluators to validate the server trust. The trust is only considered valid if all of the"},"Classes/DisabledEvaluator.html":{"name":"DisabledEvaluator","abstract":"

    Disables all evaluation which in turn will always consider any server trust as valid.

    "},"Classes/Session.html":{"name":"Session","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html":{"name":"SessionDelegate","abstract":"

    Undocumented

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Extensions.html":{"name":"Extensions","abstract":"

    The following extensions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "},"Typealiases.html":{"name":"Type Aliases","abstract":"

    The following type aliases are available globally.

    "}} \ No newline at end of file +{"Typealiases.html#/s:9Alamofire8AFResulta":{"name":"AFResult","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire10Parametersa":{"name":"Parameters","abstract":"

    A dictionary of parameters to apply to a URLRequest.

    "},"Typealiases.html#/s:9Alamofire12AdaptHandlera":{"name":"AdaptHandler","abstract":"

    Undocumented

    "},"Typealiases.html#/s:9Alamofire12RetryHandlera":{"name":"RetryHandler","abstract":"

    Undocumented

    "},"Structs/Empty.html#/s:9Alamofire5EmptyV5valueACvpZ":{"name":"value","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/Empty.html#/s:9Alamofire5EmptyV10emptyValueACyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"Empty"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    The final destination URL of the data returned from the server after it is moved.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    The resume data generated if the request was cancelled.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7request8response7fileURL10resumeData7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAL0G0VSgAL0I0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:fileURL:resumeData:metrics:serializationDuration:result:)","abstract":"

    Creates a DownloadResponse instance with the specified parameters derived from response serialization.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DownloadResponse is a success, passing the unwrapped","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DownloadResponse.html#/s:9Alamofire16DownloadResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DownloadResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DownloadResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    The URL request sent to the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    The server’s response to the URL request.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    The data returned by the server.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    The final metrics of the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV21serializationDurationSdvp":{"name":"serializationDuration","abstract":"

    The time taken to serialize the response.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV6results6ResultOyxs5Error_pGvp":{"name":"result","abstract":"

    The result of response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5valuexSgvp":{"name":"value","abstract":"

    Returns the associated value of the result if it is a success, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV5errors5Error_pSgvp":{"name":"error","abstract":"

    Returns the associated error value if the result if it is a failure, nil otherwise.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7request8response4data7metrics21serializationDuration6resultACyxG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgSo23NSURLSessionTaskMetricsCSgSds6ResultOyxs5Error_pGtcfc":{"name":"init(request:response:data:metrics:serializationDuration:result:)","abstract":"

    Creates a DataResponse instance with the specified parameters derviced from the response serialization.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV11descriptionSSvp":{"name":"description","abstract":"

    The textual representation used when written to an output stream, which includes whether the result was a","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    The debug textual representation used when written to an output stream, which includes the URL request, the URL","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV3mapyACyqd__Gqd__xXElF":{"name":"map(_:)","abstract":"

    Evaluates the specified closure when the result of this DataResponse is a success, passing the unwrapped","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV7flatMapyACyqd__Gqd__xKXElF":{"name":"flatMap(_:)","abstract":"

    Evaluates the given closure when the result of this DataResponse is a success, passing the unwrapped result","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV8mapErroryACyxGqd__s0E0_pXEsAFRd__lF":{"name":"mapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/DataResponse.html#/s:9Alamofire12DataResponseV12flatMapErroryACyxGqd__s0F0_pKXEsAFRd__lF":{"name":"flatMapError(_:)","abstract":"

    Evaluates the specified closure when the DataResponse is a failure, passing the unwrapped error as a parameter.

    ","parent_name":"DataResponse"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6followyA2EmF":{"name":"follow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO11doNotFollowyA2EmF":{"name":"doNotFollow","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html#/s:9Alamofire10RedirectorV8BehaviorO6modifyyAE10Foundation10URLRequestVSgSo16NSURLSessionTaskC_AISo17NSHTTPURLResponseCtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/Redirector/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the Redirector type.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV6followACvpZ":{"name":"follow","abstract":"

    Returns a Redirector with a follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV11doNotFollowACvpZ":{"name":"doNotFollow","abstract":"

    Returns a Redirector with a do not follow Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the Redirector.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire10RedirectorV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a Redirector instance from the Behavior.

    ","parent_name":"Redirector"},"Structs/Redirector.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","parent_name":"Redirector"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a JSONEncoding instance with default writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns a JSONEncoding instance with .prettyPrinted writing options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsSo20NSJSONWritingOptionsVvp":{"name":"options","abstract":"

    The options for writing the parameters as JSON data.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV7optionsACSo20NSJSONWritingOptionsV_tcfc":{"name":"init(options:)","abstract":"

    Creates a JSONEncoding instance using the specified options.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"JSONEncoding"},"Structs/JSONEncoding.html#/s:9Alamofire12JSONEncodingV6encode_14withJSONObject10Foundation10URLRequestVAA0G11Convertible_p_ypSgtKF":{"name":"encode(_:withJSONObject:)","abstract":"

    Creates a URL request by encoding the JSON object and setting the resulting data on the HTTP body.

    ","parent_name":"JSONEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/BoolEncoding.html#/s:9Alamofire11URLEncodingV12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Undocumented

    ","parent_name":"BoolEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/ArrayEncoding.html#/s:9Alamofire11URLEncodingV13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    Undocumented

    ","parent_name":"ArrayEncoding"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html#/s:9Alamofire11URLEncodingV11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Undocumented

    ","parent_name":"Destination"},"Structs/URLEncoding/Destination.html":{"name":"Destination","abstract":"

    Defines whether the url-encoded query string is applied to the existing query string or HTTP body of the","parent_name":"URLEncoding"},"Structs/URLEncoding/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV7defaultACvpZ":{"name":"default","abstract":"

    Returns a default URLEncoding instance with a .methodDependent destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11queryStringACvpZ":{"name":"queryString","abstract":"

    Returns a URLEncoding instance with a .queryString destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV8httpBodyACvpZ":{"name":"httpBody","abstract":"

    Returns a URLEncoding instance with an .httpBody destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The destination defining where the encoded query string is to be applied to the URL request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV13arrayEncodingAC05ArrayD0Ovp":{"name":"arrayEncoding","abstract":"

    The encoding to use for Array parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV12boolEncodingAC04BoolD0Ovp":{"name":"boolEncoding","abstract":"

    The encoding to use for Bool parameters.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV11destination13arrayEncoding04boolE0A2C11DestinationO_AC05ArrayE0OAC04BoolE0Otcfc":{"name":"init(destination:arrayEncoding:boolEncoding:)","abstract":"

    Creates a URLEncoding instance using the specified destination.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6encode_4with10Foundation10URLRequestVAA0F11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV15queryComponents7fromKey5valueSaySS_SStGSS_yptF":{"name":"queryComponents(fromKey:value:)","abstract":"

    Creates percent-escaped, URL encoded query string components from the given key-value pair using recursion.

    ","parent_name":"URLEncoding"},"Structs/URLEncoding.html#/s:9Alamofire11URLEncodingV6escapeyS2SF":{"name":"escape(_:)","abstract":"

    Returns a percent-escaped string following RFC 3986 for a query string key or value.

    ","parent_name":"URLEncoding"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4nameSSvp":{"name":"name","abstract":"

    Name of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV5valueSSvp":{"name":"value","abstract":"

    Value of the header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV4name5valueACSS_SStcfc":{"name":"init(name:value:)","abstract":"

    Creates an instance from the given name and value.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13acceptCharsetyACSSFZ":{"name":"acceptCharset(_:)","abstract":"

    Returns an Accept-Charset header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptLanguageyACSSFZ":{"name":"acceptLanguage(_:)","abstract":"

    Returns an Accept-Language header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV14acceptEncodingyACSSFZ":{"name":"acceptEncoding(_:)","abstract":"

    Returns an Accept-Encoding header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization8username8passwordACSS_SStFZ":{"name":"authorization(username:password:)","abstract":"

    Returns a Basic Authorization header using the username and password provided.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorization11bearerTokenACSS_tFZ":{"name":"authorization(bearerToken:)","abstract":"

    Returns a Bearer Authorization header using the bearerToken provided

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV13authorizationyACSSFZ":{"name":"authorization(_:)","abstract":"

    Returns an Authorization header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV18contentDispositionyACSSFZ":{"name":"contentDisposition(_:)","abstract":"

    Returns a Content-Disposition header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV11contentTypeyACSSFZ":{"name":"contentType(_:)","abstract":"

    Returns a Content-Type header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV9userAgentyACSSFZ":{"name":"userAgent(_:)","abstract":"

    Returns a User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptEncodingACvpZ":{"name":"defaultAcceptEncoding","abstract":"

    Returns Alamofire’s default Accept-Encoding header, appropriate for the encodings supporte by particular OS","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV21defaultAcceptLanguageACvpZ":{"name":"defaultAcceptLanguage","abstract":"

    Returns Alamofire’s default Accept-Language header, generated by querying Locale for the user’s","parent_name":"HTTPHeader"},"Structs/HTTPHeader.html#/s:9Alamofire10HTTPHeaderV16defaultUserAgentACvpZ":{"name":"defaultUserAgent","abstract":"

    Returns Alamofire’s default User-Agent header.

    ","parent_name":"HTTPHeader"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVACycfc":{"name":"init()","abstract":"

    Create an empty instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSayAA10HTTPHeaderVGcfc":{"name":"init(_:)","abstract":"

    Create an instance from an array of HTTPHeaders. Duplicate case-insensitive names are collapsed into the last","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVyACSDyS2SGcfc":{"name":"init(_:)","abstract":"

    Create an instance from a [String: String]. Duplicate case-insensitive names are collapsed into the last name","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3add4name5valueySS_SStF":{"name":"add(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV3addyyAA10HTTPHeaderVF":{"name":"add(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6update4name5valueySS_SStF":{"name":"update(name:value:)","abstract":"

    Case-insensitively updates or appends an HTTPHeader into the instance using the provided name and value.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6updateyyAA10HTTPHeaderVF":{"name":"update(_:)","abstract":"

    Case-insensitively updates or appends the provided HTTPHeader into the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6remove4nameySS_tF":{"name":"remove(name:)","abstract":"

    Case-insensitively removes an HTTPHeader, if it exists, from the instance.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV4sortyyF":{"name":"sort()","abstract":"

    Sort the current instance by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV6sortedACyF":{"name":"sorted()","abstract":"

    Returns an instance sorted by header name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV5value3forSSSgSS_tF":{"name":"value(for:)","abstract":"

    Case-insensitively find a header’s value by name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersVySSSgSScip":{"name":"subscript(_:)","abstract":"

    Case-insensitively access the header with the given name.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV10dictionarySDyS2SGvp":{"name":"dictionary","abstract":"

    The dictionary representation of all headers.

    ","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s30ExpressibleByDictionaryLiteralP010dictionaryD0x3KeyQz_5ValueQztd_tcfc":{"name":"init(dictionaryLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s25ExpressibleByArrayLiteralP05arrayD0x0cD7ElementQzd_tcfc":{"name":"init(arrayLiteral:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:ST12makeIterator0B0QzyF":{"name":"makeIterator()","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl10startIndex0B0Qzvp":{"name":"startIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl8endIndex0B0Qzvp":{"name":"endIndex","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sly7ElementQz5IndexQzcip":{"name":"subscript(_:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:Sl5index5after5IndexQzAD_tF":{"name":"index(after:)","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:s23CustomStringConvertibleP11descriptionSSvp":{"name":"description","parent_name":"HTTPHeaders"},"Structs/HTTPHeaders.html#/s:9Alamofire11HTTPHeadersV7defaultACvpZ":{"name":"default","abstract":"

    The default set of HTTPHeaders used by Alamofire. Includes Accept-Encoding, Accept-Language, and","parent_name":"HTTPHeaders"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO5cacheyA2EmF":{"name":"cache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO10doNotCacheyA2EmF":{"name":"doNotCache","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html#/s:9Alamofire14ResponseCacherV8BehaviorO6modifyyAESo19NSCachedURLResponseCSgSo20NSURLSessionDataTaskC_AHtccAEmF":{"name":"modify(_:)","abstract":"

    Undocumented

    ","parent_name":"Behavior"},"Structs/ResponseCacher/Behavior.html":{"name":"Behavior","abstract":"

    Defines the behavior of the ResponseCacher type.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV5cacheACvpZ":{"name":"cache","abstract":"

    Returns a ResponseCacher with a follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV10doNotCacheACvpZ":{"name":"doNotCache","abstract":"

    Returns a ResponseCacher with a do not follow Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorAC8BehaviorOvp":{"name":"behavior","abstract":"

    The Behavior of the ResponseCacher.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire14ResponseCacherV8behaviorA2C8BehaviorO_tcfc":{"name":"init(behavior:)","abstract":"

    Creates a ResponseCacher instance from the Behavior.

    ","parent_name":"ResponseCacher"},"Structs/ResponseCacher.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","parent_name":"ResponseCacher"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE12certificatesSaySo17SecCertificateRefaGvp":{"name":"certificates","abstract":"

    Returns all valid cer, crt, and der certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE10publicKeysSaySo9SecKeyRefaGvp":{"name":"publicKeys","abstract":"

    Returns all public keys for the valid certificates in the bundle.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo8NSBundleCRbzlE5paths19forResourcesOfTypesSaySSGAH_tF":{"name":"paths(forResourcesOfTypes:)","abstract":"

    Returns all pathnames for the resources identified by the provided file extensions.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate6policy13errorProducerySo0c6PolicyE0a_s5Error_ps5Int32V_So0cD10ResultTypeVtXEtKF":{"name":"validate(policy:errorProducer:)","abstract":"

    Attempts to validate self using the policy provided and transforming any error produced using the closure passed.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE5apply6policyAESo0c6PolicyE0a_tKF":{"name":"apply(policy:)","abstract":"

    Applies a SecPolicy to self, throwing if it fails.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE8validate13errorProducerys5Error_ps5Int32V_So0cD10ResultTypeVtXE_tKF":{"name":"validate(errorProducer:)","abstract":"

    Validate self, passing any failure values through errorProducer.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE21setAnchorCertificatesyySaySo0c11CertificateE0aGKF":{"name":"setAnchorCertificates(_:)","abstract":"

    Sets a custom certificate chain on self, allowing full validation of a self-signed certificate and its chain.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    The public keys contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE12certificatesSaySo0c11CertificateE0aGvp":{"name":"certificates","abstract":"

    The SecCertificates contained i self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE15certificateDataSay10Foundation0G0VGvp":{"name":"certificateData","abstract":"

    The Data values for all certificates contained in self.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE24performDefaultValidation7forHostySS_tKF":{"name":"performDefaultValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.default. This evaluation does not validate the hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo11SecTrustRefaRszlE17performValidation7forHostySS_tKF":{"name":"performValidation(forHost:)","abstract":"

    Validates self after applying SecPolicy.af.hostname(host), which performs the default validation as well as","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE7defaultAEvpZ":{"name":"default","abstract":"

    Creates a SecPolicy instance which will validate server certificates but not require a host name match.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE8hostnameyAESSFZ":{"name":"hostname(_:)","abstract":"

    Creates a SecPolicy instance which will validate server certificates and much match the provided hostname.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo12SecPolicyRefaRszlE10revocation7optionsAeA24RevocationTrustEvaluatorC7OptionsV_tKFZ":{"name":"revocation(options:)","abstract":"

    Creates a SecPolicy which checks the revocation of certificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE4dataSay10Foundation4DataVGvp":{"name":"data","abstract":"

    All Data values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASaySo17SecCertificateRefaGRszlE10publicKeysSaySo0c3KeyE0aGvp":{"name":"publicKeys","abstract":"

    All public SecKey values for the contained SecCertificates.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo17SecCertificateRefaRszlE9publicKeySo0cgE0aSgvp":{"name":"publicKey","abstract":"

    The public key for self, if it can be extracted.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAAs5Int32VRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is errSecSuccess.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo18SecTrustResultTypeVRszlE9isSuccessSbvp":{"name":"isSuccess","abstract":"

    Returns whether self is.unspecifiedor.proceed`.

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html#/s:9Alamofire0A9ExtensionVAASo25NSURLSessionConfigurationCRbzlE7defaultAEvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtension"},"Structs/AlamofireExtension.html":{"name":"AlamofireExtension","abstract":"

    Type that acts as a generic extension point for all AlamofireExtended types.

    "},"Structs/ResponseCacher.html":{"name":"ResponseCacher","abstract":"

    ResponseCacher is a convenience CachedResponseHandler making it easy to cache, not cache, or modify a cached"},"Structs/HTTPHeaders.html":{"name":"HTTPHeaders","abstract":"

    An order-preserving and case-insensitive representation of HTTP headers.

    "},"Structs/HTTPHeader.html":{"name":"HTTPHeader","abstract":"

    A representation of a single HTTP header’s name / value pair.

    "},"Structs/URLEncoding.html":{"name":"URLEncoding","abstract":"

    Creates a url-encoded query string to be set as or appended to any existing URL query string or set as the HTTP"},"Structs/JSONEncoding.html":{"name":"JSONEncoding","abstract":"

    Uses JSONSerialization to create a JSON representation of the parameters object, which is set as the body of the"},"Structs/Redirector.html":{"name":"Redirector","abstract":"

    Redirector is a convenience RedirectHandler making it easy to follow, not follow, or modify a redirect.

    "},"Structs/DataResponse.html":{"name":"DataResponse","abstract":"

    Used to store all data associated with a serialized response of a data or upload request.

    "},"Structs/DownloadResponse.html":{"name":"DownloadResponse","abstract":"

    Used to store all data associated with a serialized response of a download request.

    "},"Structs/Empty.html":{"name":"Empty","abstract":"

    A type representing an empty response. Use Empty.value to get the instance.

    "},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertibleP02asB010Foundation0B0VyKF":{"name":"asURLRequest()","abstract":"

    Returns a URLRequest or throws if an Error was encoutered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLRequestConvertible.html#/s:9Alamofire21URLRequestConvertiblePAAE10urlRequest10Foundation0B0VSgvp":{"name":"urlRequest","abstract":"

    The URLRequest returned by discarding any Error encountered.

    ","parent_name":"URLRequestConvertible"},"Protocols/URLConvertible.html#/s:9Alamofire14URLConvertibleP5asURL10Foundation0D0VyKF":{"name":"asURL()","abstract":"

    Returns a URL from the conforming instance or throws.

    ","parent_name":"URLConvertible"},"Protocols/ServerTrustEvaluating.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"ServerTrustEvaluating"},"Protocols/DataDecoder.html#/s:9Alamofire11DataDecoderP6decode_4fromqd__qd__m_10Foundation0B0VtKSeRd__lF":{"name":"decode(_:from:)","abstract":"

    Decode Data into the provided type.

    ","parent_name":"DataDecoder"},"Protocols/EmptyResponse.html#/s:9Alamofire13EmptyResponseP10emptyValuexyFZ":{"name":"emptyValue()","abstract":"

    Undocumented

    ","parent_name":"EmptyResponse"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerP05emptyB5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE26defaultEmptyRequestMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultEmptyRequestMethods","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE012defaultEmptyB5CodesShySiGvpZ":{"name":"defaultEmptyResponseCodes","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE018requestAllowsEmptyB4DataySbSg10Foundation10URLRequestVSgF":{"name":"requestAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE019responseAllowsEmptyB4DataySbSgSo17NSHTTPURLResponseCSgF":{"name":"responseAllowsEmptyResponseData(_:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/ResponseSerializer.html#/s:9Alamofire18ResponseSerializerPAAE05emptyB7Allowed10forRequest8responseSb10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgtF":{"name":"emptyResponseAllowed(forRequest:response:)","abstract":"

    Undocumented

    ","parent_name":"ResponseSerializer"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this DownloadResponseSerializerType.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DownloadResponseSerializerProtocol.html#/s:9Alamofire34DownloadResponseSerializerProtocolP09serializeB07request8response7fileURL5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0J0VSgs5Error_pSgtKF":{"name":"serializeDownload(request:response:fileURL:error:)","abstract":"

    The function used to serialize the downloaded data in response handlers.

    ","parent_name":"DownloadResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP16SerializedObjectQa":{"name":"SerializedObject","abstract":"

    The type of serialized object to be created by this serializer.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/DataResponseSerializerProtocol.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","abstract":"

    The function used to serialize the response data in response handlers.

    ","parent_name":"DataResponseSerializerProtocol"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestInterceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RequestInterceptor"},"Protocols/RequestRetrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","abstract":"

    Determines whether the Request should be retried by calling the completion closure.

    ","parent_name":"RequestRetrier"},"Protocols/RequestAdapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","abstract":"

    Inspects and adapts the specified URLRequest in some manner and calls the completion handler with the AFResult.

    ","parent_name":"RequestAdapter"},"Protocols/UploadableConvertible.html#/s:9Alamofire21UploadableConvertibleP06createB0AA13UploadRequestC0B0OyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"UploadableConvertible"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP20sessionConfigurationSo012NSURLSessionE0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP11retryResult3for5dueTo10completionyAA0B0C_s5Error_pyAA05RetryE0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RequestDelegate.html#/s:9Alamofire15RequestDelegateP05retryB0_9withDelayyAA0B0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"RequestDelegate"},"Protocols/RedirectHandler.html#/s:9Alamofire15RedirectHandlerP4task_18willBeRedirectedTo3for10completionySo16NSURLSessionTaskC_10Foundation10URLRequestVSo17NSHTTPURLResponseCyALSgctF":{"name":"task(_:willBeRedirectedTo:for:completion:)","abstract":"

    Determines how the HTTP redirect response should be redirected to the new request.

    ","parent_name":"RedirectHandler"},"Protocols/ParameterEncoding.html#/s:9Alamofire17ParameterEncodingP6encode_4with10Foundation10URLRequestVAA0G11Convertible_p_SDySSypGSgtKF":{"name":"encode(_:with:)","abstract":"

    Creates a URL request by encoding parameters and applying them onto an existing request.

    ","parent_name":"ParameterEncoding"},"Protocols/ParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","abstract":"

    Encode the provided Encodable parameters into request.

    ","parent_name":"ParameterEncoder"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","abstract":"

    The DispatchQueue onto which Alamofire’s root CompositeEventMonitor will dispatch events. Defaults to .main.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Event called during URLSessionDelegate‘s urlSession(_:didBecomeInvalidWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didReceive:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:needNewBodyStream:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didFinishCollecting:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:task:didCompleteWithError:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Event called during URLSessionTaskDelegate‘s urlSession(_:taskIsWaitingForConnectivity:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:didReceive:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","abstract":"

    Event called during URLSessionDataDelegate‘s urlSession(_:dataTask:willCacheResponse:completionHandler:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Event called during URLSessionDownloadDelegate‘s urlSession(_:downloadTask:didFinishDownloadingTo:) method.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","abstract":"

    Event called when a URLRequest is first created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","abstract":"

    Event called when the attempt to create a URLRequest from a Request‘s original URLRequestConvertible value fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","abstract":"

    Event called when a RequestAdapter adapts the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","abstract":"

    Event called when a RequestAdapter fails to adapt the Request‘s initial URLRequest.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","abstract":"

    Event called when a URLSessionTask subclass instance is created for a Request.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","abstract":"

    Event called when a Request receives a URLSessionTaskMetrics value.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","abstract":"

    Event called when a Request fails due to an error created by Alamofire. e.g. When certificat pinning fails.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","abstract":"

    Event called when a Request‘s task completes, possibly with an error. A Request may recieve this event","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","abstract":"

    Event called when a Request is about to be retried.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","abstract":"

    Event called when a Request finishes and response serializers are being called.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","abstract":"

    Event called when a Request receives a resume call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is resumed.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","abstract":"

    Event called when a Request receives a suspend call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is suspended.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","abstract":"

    Event called when a Request receives a cancel call.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","abstract":"

    Event called when a Request‘s associated URLSessionTask is cancelled.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","abstract":"

    Event called when a DataRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest creates a DataResponse<Data?> value without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DataRequest calls a ResponseSerializer and creates a generic DataResponse<Value>.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","abstract":"

    Event called when an UploadRequest creates its Uploadable value, indicating the type of upload it represents.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","abstract":"

    Event called when an UploadRequest failes to create its Uploadable value due to an error.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","abstract":"

    Event called when an UploadRequest provides the InputStream from its Uploadable value. This only occurs if","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","abstract":"

    Event called when a DownloadRequest‘s URLSessionDownloadTask finishes and the temporary file has been moved.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","abstract":"

    Event called when a DownloadRequest‘s Destination closure is called and creates the destination URL the","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","abstract":"

    Event called when a DownloadRequest calls a Validation.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest creates a DownloadResponse<URL?> without calling a ResponseSerializer.

    ","parent_name":"EventMonitor"},"Protocols/EventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","abstract":"

    Event called when a DownloadRequest calls a DownloadResponseSerializer and creates a generic DownloadResponse<Value>

    ","parent_name":"EventMonitor"},"Protocols/CachedResponseHandler.html#/s:9Alamofire21CachedResponseHandlerP8dataTask_09willCacheC010completionySo016NSURLSessionDataF0C_So19NSCachedURLResponseCyAJSgctF":{"name":"dataTask(_:willCacheResponse:completion:)","abstract":"

    Determines whether the HTTP response should be stored in the cache.

    ","parent_name":"CachedResponseHandler"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP0B4TypeQa":{"name":"ExtendedType","abstract":"

    Undocumented

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGmvpZ":{"name":"af","abstract":"

    Static Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html#/s:9Alamofire0A8ExtendedP2afAA0A9ExtensionVy0B4TypeQzGvp":{"name":"af","abstract":"

    Instance Alamofire extension point.

    ","parent_name":"AlamofireExtended"},"Protocols/AlamofireExtended.html":{"name":"AlamofireExtended","abstract":"

    Protocol describing the af extension points for Alamofire extended types.

    "},"Protocols/CachedResponseHandler.html":{"name":"CachedResponseHandler","abstract":"

    A type that handles whether the data task should store the HTTP response in the cache.

    "},"Protocols/EventMonitor.html":{"name":"EventMonitor","abstract":"

    Protocol outlining the lifetime events inside Alamofire. It includes both events received from the various"},"Protocols/ParameterEncoder.html":{"name":"ParameterEncoder","abstract":"

    A type that can encode any Encodable type into a URLRequest.

    "},"Protocols/ParameterEncoding.html":{"name":"ParameterEncoding","abstract":"

    A type used to define how a set of parameters are applied to a URLRequest.

    "},"Protocols/RedirectHandler.html":{"name":"RedirectHandler","abstract":"

    A type that handles how an HTTP redirect response from a remote server should be redirected to the new request.

    "},"Protocols/RequestDelegate.html":{"name":"RequestDelegate","abstract":"

    Protocol abstraction for Request‘s communication back to the SessionDelegate.

    "},"Protocols/UploadableConvertible.html":{"name":"UploadableConvertible","abstract":"

    Undocumented

    "},"Protocols.html#/s:9Alamofire17UploadConvertibleP":{"name":"UploadConvertible","abstract":"

    Undocumented

    "},"Protocols/RequestAdapter.html":{"name":"RequestAdapter","abstract":"

    A type that can inspect and optionally adapt a URLRequest in some manner if necessary.

    "},"Protocols/RequestRetrier.html":{"name":"RequestRetrier","abstract":"

    A type that determines whether a request should be retried after being executed by the specified session manager"},"Protocols/RequestInterceptor.html":{"name":"RequestInterceptor","abstract":"

    A type that intercepts requests to potentially adapt and retry them.

    "},"Protocols/DataResponseSerializerProtocol.html":{"name":"DataResponseSerializerProtocol","abstract":"

    The type to which all data response serializers must conform in order to serialize a response.

    "},"Protocols/DownloadResponseSerializerProtocol.html":{"name":"DownloadResponseSerializerProtocol","abstract":"

    The type to which all download response serializers must conform in order to serialize a response.

    "},"Protocols/ResponseSerializer.html":{"name":"ResponseSerializer","abstract":"

    A serializer that can handle both data and download responses.

    "},"Protocols/EmptyResponse.html":{"name":"EmptyResponse","abstract":"

    A protocol for a type representing an empty response. Use T.emptyValue to get an instance.

    "},"Protocols/DataDecoder.html":{"name":"DataDecoder","abstract":"

    Any type which can decode Data.

    "},"Protocols/ServerTrustEvaluating.html":{"name":"ServerTrustEvaluating","abstract":"

    A protocol describing the API used to evaluate server trusts.

    "},"Protocols/URLConvertible.html":{"name":"URLConvertible","abstract":"

    Types adopting the URLConvertible protocol can be used to construct URLs, which can then be used to construct"},"Protocols/URLRequestConvertible.html":{"name":"URLRequestConvertible","abstract":"

    Types adopting the URLRequestConvertible protocol can be used to safely construct URLRequests.

    "},"Functions.html#/s:9Alamofire2eeoiySbAA26NetworkReachabilityManagerC0cD6StatusO_AFtF":{"name":"==(_:_:)","abstract":"

    Returns whether the two network reachability status values are equal.

    "},"Extensions/URLComponents.html#/s:10Foundation13URLComponentsV9AlamofireE5asURLAA0E0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if the self‘s url is not nil, otherwise throws.

    ","parent_name":"URLComponents"},"Extensions/URL.html#/s:10Foundation3URLV9AlamofireE02asB0ACyKF":{"name":"asURL()","abstract":"

    Returns self.

    ","parent_name":"URL"},"Extensions/String.html#/s:SS9AlamofireE5asURL10Foundation0C0VyKF":{"name":"asURL()","abstract":"

    Returns a URL if self can be used to initialize a URL instance, otherwise throws.

    ","parent_name":"String"},"Extensions/Array.html#/s:Sa9AlamofireAA21ServerTrustEvaluating_pRszlE8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","abstract":"

    Evaluates the given SecTrust value for the given host.

    ","parent_name":"Array"},"Extensions/CharacterSet.html#/s:10Foundation12CharacterSetV9AlamofireE17afURLQueryAllowedACvpZ":{"name":"afURLQueryAllowed","abstract":"

    Creates a CharacterSet from RFC 3986 allowed characters.

    ","parent_name":"CharacterSet"},"Extensions/Notification.html#/s:10Foundation12NotificationV9AlamofireE7requestAD7RequestCSgvp":{"name":"request","abstract":"

    The Request contained by the instance’s userInfo, nil otherwise.

    ","parent_name":"Notification"},"Extensions/URLSessionConfiguration.html#/s:So25NSURLSessionConfigurationC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns httpAdditionalHeaders as HTTPHeaders.

    ","parent_name":"URLSessionConfiguration"},"Extensions/HTTPURLResponse.html#/s:So17NSHTTPURLResponseC9AlamofireE7headersAC11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHeaderFields as HTTPHeaders.

    ","parent_name":"HTTPURLResponse"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE7headersAD11HTTPHeadersVvp":{"name":"headers","abstract":"

    Returns allHTTPHeaderFields as HTTPHeaders.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE02asB0ACyKF":{"name":"asURLRequest()","abstract":"

    Returns self.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE3url6method7headersAcD14URLConvertible_p_AD10HTTPMethodOAD11HTTPHeadersVSgtKcfc":{"name":"init(url:method:headers:)","abstract":"

    Creates an instance with the specified url, method, and headers.

    ","parent_name":"URLRequest"},"Extensions/URLRequest.html#/s:10Foundation10URLRequestV9AlamofireE6methodAD10HTTPMethodOSgvp":{"name":"method","abstract":"

    Returns the httpMethod as Alamofire’s HTTPMethod type.

    ","parent_name":"URLRequest"},"Extensions/Error.html#/s:s5ErrorP9AlamofireE9asAFErrorAC0D0OSgvp":{"name":"asAFError","abstract":"

    Returns the instance cast as an AFError.

    ","parent_name":"Error"},"Extensions/Error.html":{"name":"Error"},"Extensions/URLRequest.html":{"name":"URLRequest"},"Extensions/HTTPURLResponse.html":{"name":"HTTPURLResponse"},"Extensions/URLSessionConfiguration.html":{"name":"URLSessionConfiguration"},"Extensions/Notification.html":{"name":"Notification"},"Extensions/CharacterSet.html":{"name":"CharacterSet"},"Extensions/Array.html":{"name":"Array"},"Extensions/String.html":{"name":"String"},"Extensions/URL.html":{"name":"URL"},"Extensions/URLComponents.html":{"name":"URLComponents"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO5retryyA2CmF":{"name":"retry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO14retryWithDelayyACSdcACmF":{"name":"retryWithDelay(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB0yA2CmF":{"name":"doNotRetry","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/RetryResult.html#/s:9Alamofire11RetryResultO05doNotB9WithErroryACs0G0_pcACmF":{"name":"doNotRetryWithError(_:)","abstract":"

    Undocumented

    ","parent_name":"RetryResult"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7connectyA2CmF":{"name":"connect","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO6deleteyA2CmF":{"name":"delete","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3getyA2CmF":{"name":"get","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4headyA2CmF":{"name":"head","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO7optionsyA2CmF":{"name":"options","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5patchyA2CmF":{"name":"patch","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO4postyA2CmF":{"name":"post","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO3putyA2CmF":{"name":"put","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/HTTPMethod.html#/s:9Alamofire10HTTPMethodO5traceyA2CmF":{"name":"trace","abstract":"

    Undocumented

    ","parent_name":"HTTPMethod"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtFZ":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlFZ":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to retrive the contents of the specified url","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtFZ":{"name":"request(_:interceptor:)","abstract":"

    Creates a DataRequest using SessionManager.default to execute the specified urlRequest.

    ","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlFZ":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to download the contents of the specified url to","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(_:interceptor:to:)","abstract":"

    Creates a DownloadRequest using SessionManager.default to execute the specified urlRequest and download","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtFZ":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Creates a DownloadRequest using the SessionManager.default from the resumeData produced from a previous","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the fileURL specified","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using the SessionManager.default to upload the contents of the fileURL specificed","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the contents of the data specified using","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtFZ":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtFZ":{"name":"upload(_:with:interceptor:)","abstract":"

    Creates an UploadRequest using SessionManager.default to upload the content provided by the stream","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AF.html#/s:9Alamofire2AFO6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtFZ":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Encodes multipartFormData using encodingMemoryThreshold and uploads the result using SessionManager.default","parent_name":"AF"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV4hostSSvp":{"name":"host","abstract":"

    The host for which the evaluation was performed.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV5trustSo03SecD3Refavp":{"name":"trust","abstract":"

    The SecTrust value which was evaluated.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6statuss5Int32Vvp":{"name":"status","abstract":"

    The OSStatus of evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO6OutputV6resultSo03SecD10ResultTypeVvp":{"name":"result","abstract":"

    The result of the evaluation operation.

    ","parent_name":"Output"},"Enums/AFError/ServerTrustFailureReason/Output.html":{"name":"Output","abstract":"

    The output of a server trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noRequiredEvaluatoryAESS_tcAEmF":{"name":"noRequiredEvaluator(host:)","abstract":"

    Undocumented

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO19noCertificatesFoundyA2EmF":{"name":"noCertificatesFound","abstract":"

    No certificates were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO17noPublicKeysFoundyA2EmF":{"name":"noPublicKeysFound","abstract":"

    No public keys were found with which to perform the trust evaluation.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23policyApplicationFailedyAESo03SecD3Refa_So0j6PolicyK0as5Int32VtcAEmF":{"name":"policyApplicationFailed(trust:policy:status:)","abstract":"

    During evaluation, application of the associated SecPolicy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO31settingAnchorCertificatesFailedyAEs5Int32V_SaySo17SecCertificateRefaGtcAEmF":{"name":"settingAnchorCertificatesFailed(status:certificates:)","abstract":"

    During evaluation, setting the associated anchor certificates failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO30revocationPolicyCreationFailedyA2EmF":{"name":"revocationPolicyCreationFailed","abstract":"

    During evaluation, creation of the revocation policy failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO23defaultEvaluationFailedyA2E6OutputV_tcAEmF":{"name":"defaultEvaluationFailed(output:)","abstract":"

    Default evaluation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO20hostValidationFailedyA2E6OutputV_tcAEmF":{"name":"hostValidationFailed(output:)","abstract":"

    Host validation failed with the associated Output.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO21revocationCheckFailedyA2E6OutputV_AA010RevocationD9EvaluatorC7OptionsVtcAEmF":{"name":"revocationCheckFailed(output:options:)","abstract":"

    Revocation check failed with the associated Output and options.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO24certificatePinningFailedyAESS_So03SecD3RefaSaySo0j11CertificateK0aGAKtcAEmF":{"name":"certificatePinningFailed(host:trust:pinnedCertificates:serverCertificates:)","abstract":"

    Certificate pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ServerTrustFailureReason.html#/s:9Alamofire7AFErrorO24ServerTrustFailureReasonO22publicKeyPinningFailedyAESS_So03SecD3RefaSaySo0khL0aGAKtcAEmF":{"name":"publicKeyPinningFailed(host:trust:pinnedKeys:serverKeys:)","abstract":"

    Public key pinning failed.

    ","parent_name":"ServerTrustFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO24inputDataNilOrZeroLengthyA2EmF":{"name":"inputDataNilOrZeroLength","abstract":"

    The server response contained no data or the data was zero length.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO12inputFileNilyA2EmF":{"name":"inputFileNil","abstract":"

    The file containing the server response did not exist.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO19inputFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"inputFileReadFailed(at:)","abstract":"

    The file containing the server response could not be read from the associated URL.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO06stringD6FailedyAESS10FoundationE8EncodingV_tcAEmF":{"name":"stringSerializationFailed(encoding:)","abstract":"

    String serialization failed using the provided String.Encoding.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonSerializationFailed(error:)","abstract":"

    JSON serialization failed with an underlying system error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO14decodingFailedyAEs5Error_p_tcAEmF":{"name":"decodingFailed(error:)","abstract":"

    A DataDecoder failed to decode the response due to the associated Error.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO012invalidEmptyC0yAESS_tcAEmF":{"name":"invalidEmptyResponse(type:)","abstract":"

    Generic serialization failed for an empty response that wasn’t type Empty but instead the associated type.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseSerializationFailureReason.html#/s:9Alamofire7AFErrorO34ResponseSerializationFailureReasonO43responseSerializerAddedAfterRequestFinishedyA2EmF":{"name":"responseSerializerAddedAfterRequestFinished","abstract":"

    A response serializer was added to the request after the request was already finished.

    ","parent_name":"ResponseSerializationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO11dataFileNilyA2EmF":{"name":"dataFileNil","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18dataFileReadFailedyAE10Foundation3URLV_tcAEmF":{"name":"dataFileReadFailed(at:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO18missingContentTypeyAESaySSG_tcAEmF":{"name":"missingContentType(acceptableContentTypes:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO23unacceptableContentTypeyAESaySSG_SStcAEmF":{"name":"unacceptableContentType(acceptableContentTypes:responseContentType:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/ResponseValidationFailureReason.html#/s:9Alamofire7AFErrorO31ResponseValidationFailureReasonO22unacceptableStatusCodeyAESi_tcAEmF":{"name":"unacceptableStatusCode(code:)","abstract":"

    Undocumented

    ","parent_name":"ResponseValidationFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO18bodyPartURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFilenameInvalidyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFilenameInvalid(in:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO24bodyPartFileNotReachableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileNotReachable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartFileNotReachableWithErroryAE10Foundation3URLV_s0M0_ptcAEmF":{"name":"bodyPartFileNotReachableWithError(atURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23bodyPartFileIsDirectoryyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileIsDirectory(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO28bodyPartFileSizeNotAvailableyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartFileSizeNotAvailable(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO36bodyPartFileSizeQueryFailedWithErroryAE10Foundation3URLV_s0N0_ptcAEmF":{"name":"bodyPartFileSizeQueryFailedWithError(forURL:error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO33bodyPartInputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"bodyPartInputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO26outputStreamCreationFailedyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamCreationFailed(for:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO29outputStreamFileAlreadyExistsyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamFileAlreadyExists(at:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO22outputStreamURLInvalidyAE10Foundation3URLV_tcAEmF":{"name":"outputStreamURLInvalid(url:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO23outputStreamWriteFailedyAEs5Error_p_tcAEmF":{"name":"outputStreamWriteFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/MultipartEncodingFailureReason.html#/s:9Alamofire7AFErrorO30MultipartEncodingFailureReasonO21inputStreamReadFailedyAEs5Error_p_tcAEmF":{"name":"inputStreamReadFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"MultipartEncodingFailureReason"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO3urlyA2GmF":{"name":"url","abstract":"

    The URL was missing or unable to be extracted from the passed URLRequest or during encoding.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO17RequiredComponentO10httpMethodyAGSS_tcAGmF":{"name":"httpMethod(rawValue:)","abstract":"

    The HTTPMethod could not be extracted from the passed URLRequest.

    ","parent_name":"RequiredComponent"},"Enums/AFError/ParameterEncoderFailureReason/RequiredComponent.html":{"name":"RequiredComponent","abstract":"

    Possible missing components.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO24missingRequiredComponentyA2E0hI0OcAEmF":{"name":"missingRequiredComponent(_:)","abstract":"

    A RequiredComponent was missing during encoding.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncoderFailureReason.html#/s:9Alamofire7AFErrorO29ParameterEncoderFailureReasonO13encoderFailedyAEs5Error_p_tcAEmF":{"name":"encoderFailed(error:)","abstract":"

    The underlying encoder failed with the associated error.

    ","parent_name":"ParameterEncoderFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO10missingURLyA2EmF":{"name":"missingURL","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html#/s:9Alamofire7AFErrorO30ParameterEncodingFailureReasonO04jsonD6FailedyAEs5Error_p_tcAEmF":{"name":"jsonEncodingFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"ParameterEncodingFailureReason"},"Enums/AFError/ParameterEncodingFailureReason.html":{"name":"ParameterEncodingFailureReason","abstract":"

    The underlying reason the parameter encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ParameterEncoderFailureReason.html":{"name":"ParameterEncoderFailureReason","abstract":"

    Underlying reason the parameter encoder error occured.

    ","parent_name":"AFError"},"Enums/AFError/MultipartEncodingFailureReason.html":{"name":"MultipartEncodingFailureReason","abstract":"

    The underlying reason the multipart encoding error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseValidationFailureReason.html":{"name":"ResponseValidationFailureReason","abstract":"

    The underlying reason the response validation error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ResponseSerializationFailureReason.html":{"name":"ResponseSerializationFailureReason","abstract":"

    The underlying reason the response serialization error occurred.

    ","parent_name":"AFError"},"Enums/AFError/ServerTrustFailureReason.html":{"name":"ServerTrustFailureReason","abstract":"

    Underlying reason a server trust evaluation error occured.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20sessionDeinitializedyA2CmF":{"name":"sessionDeinitialized","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18sessionInvalidatedyACs5Error_pSg_tcACmF":{"name":"sessionInvalidated(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19explicitlyCancelledyA2CmF":{"name":"explicitlyCancelled","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO10invalidURLyAcA14URLConvertible_p_tcACmF":{"name":"invalidURL(url:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23parameterEncodingFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22parameterEncoderFailedyA2C09ParameterD13FailureReasonO_tcACmF":{"name":"parameterEncoderFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23multipartEncodingFailedyA2C09MultipartD13FailureReasonO_tcACmF":{"name":"multipartEncodingFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23requestAdaptationFailedyACs5Error_p_tcACmF":{"name":"requestAdaptationFailed(error:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24responseValidationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseValidationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27responseSerializationFailedyA2C08ResponseD13FailureReasonO_tcACmF":{"name":"responseSerializationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27serverTrustEvaluationFailedyA2C06ServerD13FailureReasonO_tcACmF":{"name":"serverTrustEvaluationFailed(reason:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO18requestRetryFailedyACs5Error_p_sAE_ptcACmF":{"name":"requestRetryFailed(retryError:originalError:)","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO27isSessionDeinitializedErrorSbvp":{"name":"isSessionDeinitializedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isSessionInvalidatedErrorSbvp":{"name":"isSessionInvalidatedError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO26isExplicitlyCancelledErrorSbvp":{"name":"isExplicitlyCancelledError","abstract":"

    Returns whether the instance is .explicitlyCancelled.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO17isInvalidURLErrorSbvp":{"name":"isInvalidURLError","abstract":"

    Returns whether the instance is .invalidURL.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isParameterEncodingErrorSbvp":{"name":"isParameterEncodingError","abstract":"

    Returns whether the instance is .parameterEncodingFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO23isParameterEncoderErrorSbvp":{"name":"isParameterEncoderError","abstract":"

    Undocumented

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isMultipartEncodingErrorSbvp":{"name":"isMultipartEncodingError","abstract":"

    Returns whether the instance is .multipartEncodingFailed. When true, the url and underlyingError","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO24isRequestAdaptationErrorSbvp":{"name":"isRequestAdaptationError","abstract":"

    Returns whether the instance is .requestAdaptationFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO25isResponseValidationErrorSbvp":{"name":"isResponseValidationError","abstract":"

    Returns whether the instance is .responseValidationFailed. When true, the acceptableContentTypes,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isResponseSerializationErrorSbvp":{"name":"isResponseSerializationError","abstract":"

    Returns whether the instance is .responseSerializationFailed. When true, the failedStringEncoding and","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO28isServerTrustEvaluationErrorSbvp":{"name":"isServerTrustEvaluationError","abstract":"

    Returns whether the instance is .serverTrustEvaluationFailed.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19isRequestRetryErrorSbvp":{"name":"isRequestRetryError","abstract":"

    Returns whether the instance is requestRetryFailed. When true, the underlyingError property will","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO14urlConvertibleAA14URLConvertible_pSgvp":{"name":"urlConvertible","abstract":"

    The URLConvertible associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO3url10Foundation3URLVSgvp":{"name":"url","abstract":"

    The URL associated with the error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO15underlyingErrors0D0_pSgvp":{"name":"underlyingError","abstract":"

    The underlying Error responsible for generating the failure associated with .sessionInvalidated,","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO22acceptableContentTypesSaySSGSgvp":{"name":"acceptableContentTypes","abstract":"

    The acceptable Content-Types of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO19responseContentTypeSSSgvp":{"name":"responseContentType","abstract":"

    The response Content-Type of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO12responseCodeSiSgvp":{"name":"responseCode","abstract":"

    The response code of a .responseValidationFailed error.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:9Alamofire7AFErrorO20failedStringEncodingSS10FoundationE0E0VSgvp":{"name":"failedStringEncoding","abstract":"

    The String.Encoding associated with a failed .stringResponse() call.

    ","parent_name":"AFError"},"Enums/AFError.html#/s:10Foundation14LocalizedErrorP16errorDescriptionSSSgvp":{"name":"errorDescription","parent_name":"AFError"},"Enums/AFError.html":{"name":"AFError","abstract":"

    AFError is the error type returned by Alamofire. It encompasses a few different types of errors, each with"},"Enums/AF.html":{"name":"AF","abstract":"

    Global namespace containing API for the default Session instance.

    "},"Enums/HTTPMethod.html":{"name":"HTTPMethod","abstract":"

    HTTP method definitions.

    "},"Enums/RetryResult.html":{"name":"RetryResult","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html#/s:9Alamofire15SessionDelegateC11fileManagerACSo06NSFileE0C_tcfc":{"name":"init(fileManager:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:didBecomeInvalidWithError:":{"name":"urlSession(_:didBecomeInvalidWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didReceiveChallenge:completionHandler:":{"name":"urlSession(_:task:didReceive:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:needNewBodyStream:":{"name":"urlSession(_:task:needNewBodyStream:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:willPerformHTTPRedirection:newRequest:completionHandler:":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didFinishCollectingMetrics:":{"name":"urlSession(_:task:didFinishCollecting:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:task:didCompleteWithError:":{"name":"urlSession(_:task:didCompleteWithError:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:taskIsWaitingForConnectivity:":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:didReceiveData:":{"name":"urlSession(_:dataTask:didReceive:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:dataTask:willCacheResponse:completionHandler:":{"name":"urlSession(_:dataTask:willCacheResponse:completionHandler:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didResumeAtOffset:expectedTotalBytes:":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/SessionDelegate.html#/c:@CM@Alamofire@objc(cs)SessionDelegate(im)URLSession:downloadTask:didFinishDownloadingToURL:":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","abstract":"

    Undocumented

    ","parent_name":"SessionDelegate"},"Classes/Session.html#/s:9Alamofire7SessionC7defaultACvpZ":{"name":"default","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8delegateAA0B8DelegateCvp":{"name":"delegate","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC9rootQueueSo17OS_dispatch_queueCvp":{"name":"rootQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12requestQueueSo17OS_dispatch_queueCvp":{"name":"requestQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11interceptorAA18RequestInterceptor_pSgvp":{"name":"interceptor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC18serverTrustManagerAA06ServerdE0CSgvp":{"name":"serverTrustManager","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7sessionSo12NSURLSessionCvp":{"name":"session","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12eventMonitorAA014CompositeEventD0Cvp":{"name":"eventMonitor","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20defaultEventMonitorsSayAA0D7Monitor_pGvp":{"name":"defaultEventMonitors","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC24startRequestsImmediatelySbvp":{"name":"startRequestsImmediately","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7session8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo12NSURLSessionC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(session:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC13configuration8delegate9rootQueue24startRequestsImmediately07requestF0013serializationF011interceptor18serverTrustManager15redirectHandler014cachedResponseQ013eventMonitorsACSo25NSURLSessionConfigurationC_AA0B8DelegateCSo17OS_dispatch_queueCSbATSgAuA18RequestInterceptor_pSgAA06ServernO0CSgAA08RedirectQ0_pSgAA06CachedsQ0_pSgSayAA12EventMonitor_pGtcfc":{"name":"init(configuration:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters8encoding7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtF":{"name":"request(_:method:parameters:encoding:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_6method10parameters7encoder7headers11interceptorAA11DataRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0J11Interceptor_pSgtSERzlF":{"name":"request(_:method:parameters:encoder:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request_11interceptorAA11DataRequestCAA21URLRequestConvertible_p_AA0F11Interceptor_pSgtF":{"name":"request(_:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters8encoding7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOSDySSypGSgAA17ParameterEncoding_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAZ_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:method:parameters:encoding:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_6method10parameters7encoder7headers11interceptor2toAA15DownloadRequestCAA14URLConvertible_p_AA10HTTPMethodOxSgAA16ParameterEncoder_pAA11HTTPHeadersVSgAA0K11Interceptor_pSg10Foundation3URLV011destinationS0_AL7OptionsV7optionstAY_So17NSHTTPURLResponseCtcSgtSERzlF":{"name":"download(_:method:parameters:encoder:headers:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download_11interceptor2toAA15DownloadRequestCAA21URLRequestConvertible_p_AA0G11Interceptor_pSg10Foundation3URLV011destinationL0_AH7OptionsV7optionstAN_So17NSHTTPURLResponseCtcSgtF":{"name":"download(_:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC8download12resumingWith11interceptor2toAA15DownloadRequestC10Foundation4DataV_AA0I11Interceptor_pSgAJ3URLV011destinationM0_AI7OptionsV7optionstAP_So17NSHTTPURLResponseCtcSgtF":{"name":"download(resumingWith:interceptor:to:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation4DataV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation4DataV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestC10Foundation3URLV_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestC10Foundation3URLV_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_2to6method7headers11interceptorAA13UploadRequestCSo13NSInputStreamC_AA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0I11Interceptor_pSgtF":{"name":"upload(_:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload_4with11interceptorAA13UploadRequestCSo13NSInputStreamC_AA21URLRequestConvertible_pAA0G11Interceptor_pSgtF":{"name":"upload(_:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold11fileManager2to6method7headers11interceptorAA13UploadRequestCyAA09MultiparteF0Cc_s6UInt64VSo06NSFileJ0CAA14URLConvertible_pAA10HTTPMethodOAA11HTTPHeadersVSgAA0P11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC6upload17multipartFormData14usingThreshold4with11interceptorAA13UploadRequestCAA09MultiparteF0C_s6UInt64VAA21URLRequestConvertible_pAA0L11Interceptor_pSgtF":{"name":"upload(multipartFormData:usingThreshold:with:interceptor:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC20sessionConfigurationSo012NSURLSessionD0Cvp":{"name":"sessionConfiguration","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC11retryResult3for5dueTo10completionyAA7RequestC_s5Error_pyAA05RetryD0OctF":{"name":"retryResult(for:dueTo:completion:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC12retryRequest_9withDelayyAA0D0C_SdSgtF":{"name":"retryRequest(_:withDelay:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC7request3forAA7RequestCSgSo16NSURLSessionTaskC_tF":{"name":"request(for:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC23didGatherMetricsForTaskyySo012NSURLSessionG0CF":{"name":"didGatherMetricsForTask(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC15didCompleteTaskyySo012NSURLSessionE0CF":{"name":"didCompleteTask(_:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC10credential3for2inSo15NSURLCredentialCSgSo16NSURLSessionTaskC_So20NSURLProtectionSpaceCtF":{"name":"credential(for:in:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/Session.html#/s:9Alamofire7SessionC017cancelRequestsForB12Invalidation4withys5Error_pSg_tF":{"name":"cancelRequestsForSessionInvalidation(with:)","abstract":"

    Undocumented

    ","parent_name":"Session"},"Classes/DisabledEvaluator.html#/s:9Alamofire17DisabledEvaluatorCACycfc":{"name":"init()","abstract":"

    Undocumented

    ","parent_name":"DisabledEvaluator"},"Classes/DisabledEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DisabledEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire23CompositeTrustEvaluatorC10evaluatorsACSayAA06ServerC10Evaluating_pG_tcfc":{"name":"init(evaluators:)","abstract":"

    Creates a CompositeTrustEvaluator.

    ","parent_name":"CompositeTrustEvaluator"},"Classes/CompositeTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"CompositeTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire24PublicKeysTrustEvaluatorC4keys24performDefaultValidation12validateHostACSaySo9SecKeyRefaG_S2btcfc":{"name":"init(keys:performDefaultValidation:validateHost:)","abstract":"

    Creates a PublicKeysTrustEvaluator.

    ","parent_name":"PublicKeysTrustEvaluator"},"Classes/PublicKeysTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PublicKeysTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire32PinnedCertificatesTrustEvaluatorC12certificates016acceptSelfSignedC024performDefaultValidation12validateHostACSaySo17SecCertificateRefaG_S3btcfc":{"name":"init(certificates:acceptSelfSignedCertificates:performDefaultValidation:validateHost:)","abstract":"

    Creates a PinnedCertificatesTrustEvaluator.

    ","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/PinnedCertificatesTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"PinnedCertificatesTrustEvaluator"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3crlAEvpZ":{"name":"crl","abstract":"

    Perform revocation checking using the CRL (Certification Revocation List) method.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV21networkAccessDisabledAEvpZ":{"name":"networkAccessDisabled","abstract":"

    Consult only locally cached replies; do not use network access.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV4ocspAEvpZ":{"name":"ocsp","abstract":"

    Perform revocation checking using OCSP (Online Certificate Status Protocol).

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV9preferCRLAEvpZ":{"name":"preferCRL","abstract":"

    Prefer CRL revocation checking over OCSP; by default, OCSP is preferred.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV23requirePositiveResponseAEvpZ":{"name":"requirePositiveResponse","abstract":"

    Require a positive response to pass the policy. If the flag is not set, revocation checking is done on a","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV3anyAEvpZ":{"name":"any","abstract":"

    Perform either OCSP or CRL checking. The checking is performed according to the method(s) specified in the","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueSuvp":{"name":"rawValue","abstract":"

    The raw value of the option.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html#/s:9Alamofire24RevocationTrustEvaluatorC7OptionsV8rawValueAESu_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates an Options value with the given CFOptionFlags.

    ","parent_name":"Options"},"Classes/RevocationTrustEvaluator/Options.html":{"name":"Options","abstract":"

    Represents the options to be use when evaluating the status of a certificate.","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire24RevocationTrustEvaluatorC24performDefaultValidation12validateHost7optionsACSb_SbAC7OptionsVtcfc":{"name":"init(performDefaultValidation:validateHost:options:)","abstract":"

    Creates a RevocationTrustEvaluator.

    ","parent_name":"RevocationTrustEvaluator"},"Classes/RevocationTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"RevocationTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21DefaultTrustEvaluatorC12validateHostACSb_tcfc":{"name":"init(validateHost:)","abstract":"

    Creates a DefaultTrustEvalutor.

    ","parent_name":"DefaultTrustEvaluator"},"Classes/DefaultTrustEvaluator.html#/s:9Alamofire21ServerTrustEvaluatingP8evaluate_7forHostySo03SecC3Refa_SStKF":{"name":"evaluate(_:forHost:)","parent_name":"DefaultTrustEvaluator"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluatedSbvp":{"name":"allHostsMustBeEvaluated","abstract":"

    Determines whether all hosts for this ServerTrustManager must be evaluated. Defaults to true.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC10evaluatorsSDySSAA0bC10Evaluating_pGvp":{"name":"evaluators","abstract":"

    The dictionary of policies mapped to a particular host.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC23allHostsMustBeEvaluated10evaluatorsACSb_SDySSAA0bC10Evaluating_pGtcfc":{"name":"init(allHostsMustBeEvaluated:evaluators:)","abstract":"

    Initializes the ServerTrustManager instance with the given evaluators.

    ","parent_name":"ServerTrustManager"},"Classes/ServerTrustManager.html#/s:9Alamofire18ServerTrustManagerC06serverC9Evaluator7forHostAA0bC10Evaluating_pSgSS_tKF":{"name":"serverTrustEvaluator(forHost:)","abstract":"

    Returns the ServerTrustEvaluating value for the given host, if one is set.

    ","parent_name":"ServerTrustManager"},"Classes/ConnectionLostRetryPolicy.html#/s:9Alamofire25ConnectionLostRetryPolicyC10retryLimit22exponentialBackoffBase0hI5Scale20retryableHTTPMethodsACSu_SuSdShyAA10HTTPMethodOGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:)","abstract":"

    Creates a ConnectionLostRetryPolicy instance from the specified parameters.

    ","parent_name":"ConnectionLostRetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC07defaultB5LimitSuvpZ":{"name":"defaultRetryLimit","abstract":"

    The default retry limit for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultExponentialBackoffBaseSuvpZ":{"name":"defaultExponentialBackoffBase","abstract":"

    The default exponential backoff base for retry policies (must be a minimum of 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC30defaultExponentialBackoffScaleSdvpZ":{"name":"defaultExponentialBackoffScale","abstract":"

    The default exponential backoff scale for retry policies.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC27defaultRetryableHTTPMethodsShyAA10HTTPMethodOGvpZ":{"name":"defaultRetryableHTTPMethods","abstract":"

    The default HTTP methods to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC31defaultRetryableHTTPStatusCodesShySiGvpZ":{"name":"defaultRetryableHTTPStatusCodes","abstract":"

    The default HTTP status codes to retry.","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC29defaultRetryableURLErrorCodesShy10Foundation0F0V4CodeVGvpZ":{"name":"defaultRetryableURLErrorCodes","abstract":"

    The default URL error codes to retry.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimitSuvp":{"name":"retryLimit","abstract":"

    The total number of times the request is allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22exponentialBackoffBaseSuvp":{"name":"exponentialBackoffBase","abstract":"

    The base of the exponential backoff policy (should always be greater than or equal to 2).

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC23exponentialBackoffScaleSdvp":{"name":"exponentialBackoffScale","abstract":"

    The scale of the exponential backoff.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC20retryableHTTPMethodsShyAA10HTTPMethodOGvp":{"name":"retryableHTTPMethods","abstract":"

    The HTTP methods that are allowed to be retried.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC24retryableHTTPStatusCodesShySiGvp":{"name":"retryableHTTPStatusCodes","abstract":"

    The HTTP status codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC22retryableURLErrorCodesShy10Foundation0E0V4CodeVGvp":{"name":"retryableURLErrorCodes","abstract":"

    The URL error codes that are automatically retried by the policy.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire11RetryPolicyC10retryLimit22exponentialBackoffBase0fG5Scale20retryableHTTPMethods0J15HTTPStatusCodes0j8URLErrorM0ACSu_SuSdShyAA10HTTPMethodOGShySiGShy10Foundation0N0V4CodeVGtcfc":{"name":"init(retryLimit:exponentialBackoffBase:exponentialBackoffScale:retryableHTTPMethods:retryableHTTPStatusCodes:retryableURLErrorCodes:)","abstract":"

    Creates an ExponentialBackoffRetryPolicy from the specified parameters.

    ","parent_name":"RetryPolicy"},"Classes/RetryPolicy.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"RetryPolicy"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoderAA11DataDecoder_pvp":{"name":"decoder","abstract":"

    The JSONDecoder instance used to decode responses.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire27DecodableResponseSerializerC7decoder05emptyC5Codes0F14RequestMethodsACyxGAA11DataDecoder_p_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(decoder:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the values provided.

    ","parent_name":"DecodableResponseSerializer"},"Classes/DecodableResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DecodableResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7optionsSo20NSJSONReadingOptionsVvp":{"name":"options","abstract":"

    JSONSerialization.ReadingOptions used when serializing a response.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC18emptyResponseCodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire22JSONResponseSerializerC7options18emptyResponseCodes0E14RequestMethodsACSo20NSJSONReadingOptionsV_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(options:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"JSONResponseSerializer"},"Classes/JSONResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"JSONResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encodingSS10FoundationE8EncodingVSgvp":{"name":"encoding","abstract":"

    Optional string encoding used to validate the response.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire24StringResponseSerializerC8encoding05emptyC5Codes0F14RequestMethodsACSS10FoundationE8EncodingVSg_ShySiGShyAA10HTTPMethodOGtcfc":{"name":"init(encoding:emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance with the provided values.

    ","parent_name":"StringResponseSerializer"},"Classes/StringResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"StringResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5CodesShySiGvp":{"name":"emptyResponseCodes","abstract":"

    HTTP response codes for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC19emptyRequestMethodsShyAA10HTTPMethodOGvp":{"name":"emptyRequestMethods","abstract":"

    HTTP request methods for which empty responses are allowed.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire22DataResponseSerializerC05emptyC5Codes0E14RequestMethodsACShySiG_ShyAA10HTTPMethodOGtcfc":{"name":"init(emptyResponseCodes:emptyRequestMethods:)","abstract":"

    Creates an instance using the provided values.

    ","parent_name":"DataResponseSerializer"},"Classes/DataResponseSerializer.html#/s:9Alamofire30DataResponseSerializerProtocolP9serialize7request8response4data5error16SerializedObjectQz10Foundation10URLRequestVSg_So17NSHTTPURLResponseCSgAK0B0VSgs5Error_pSgtKF":{"name":"serialize(request:response:data:error:)","parent_name":"DataResponseSerializer"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adaptersSayAA14RequestAdapter_pGvp":{"name":"adapters","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8retriersSayAA14RequestRetrier_pGvp":{"name":"retriers","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC12adaptHandler05retryD0ACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAHs5Error_pGctc_yAA7RequestC_AJsAM_pyAA05RetryI0Octctcfc":{"name":"init(adaptHandler:retryHandler:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC7adapter7retrierAcA14RequestAdapter_p_AA0E7Retrier_ptcfc":{"name":"init(adapter:retrier:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire11InterceptorC8adapters8retriersACSayAA14RequestAdapter_pG_SayAA0E7Retrier_pGtcfc":{"name":"init(adapters:retriers:)","abstract":"

    Undocumented

    ","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Interceptor"},"Classes/Interceptor.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Interceptor"},"Classes/Retrier.html#/s:9Alamofire7RetrierCyACyAA7RequestC_AA7SessionCs5Error_pyAA11RetryResultOctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Retrier"},"Classes/Retrier.html#/s:9Alamofire14RequestRetrierP5retry_3for5dueTo10completionyAA0B0C_AA7SessionCs5Error_pyAA11RetryResultOctF":{"name":"retry(_:for:dueTo:completion:)","parent_name":"Retrier"},"Classes/Adapter.html#/s:9Alamofire7AdapterCyACy10Foundation10URLRequestV_AA7SessionCys6ResultOyAFs5Error_pGctccfc":{"name":"init(_:)","abstract":"

    Undocumented

    ","parent_name":"Adapter"},"Classes/Adapter.html#/s:9Alamofire14RequestAdapterP5adapt_3for10completiony10Foundation10URLRequestV_AA7SessionCys6ResultOyAIs5Error_pGctF":{"name":"adapt(_:for:completion:)","parent_name":"Adapter"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4datayAE10Foundation4DataVcAEmF":{"name":"data(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO4fileyAE10Foundation3URLV_SbtcAEmF":{"name":"file(_:shouldRemove:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO6streamyAESo13NSInputStreamCcAEmF":{"name":"stream(_:)","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html#/s:9Alamofire13UploadRequestC10UploadableO06createD0AEyKF":{"name":"createUploadable()","abstract":"

    Undocumented

    ","parent_name":"Uploadable"},"Classes/UploadRequest/Uploadable.html":{"name":"Uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC6uploadAA21UploadableConvertible_pvp":{"name":"upload","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC10uploadableAC10UploadableOSgvp":{"name":"uploadable","abstract":"

    Undocumented

    ","parent_name":"UploadRequest"},"Classes/UploadRequest.html#/s:9Alamofire13UploadRequestC7cleanupyyF":{"name":"cleanup()","parent_name":"UploadRequest"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO7requestyAeA21URLRequestConvertible_pcAEmF":{"name":"request(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Downloadable.html#/s:9Alamofire15DownloadRequestC12DownloadableO10resumeDatayAE10Foundation0F0VcAEmF":{"name":"resumeData(_:)","abstract":"

    Undocumented

    ","parent_name":"Downloadable"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV29createIntermediateDirectoriesAEvpZ":{"name":"createIntermediateDirectories","abstract":"

    A DownloadOptions flag that creates intermediate directories for the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV18removePreviousFileAEvpZ":{"name":"removePreviousFile","abstract":"

    A DownloadOptions flag that removes a previous file from the destination URL if specified.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueSivp":{"name":"rawValue","abstract":"

    Returns the raw bitmask value of the option and satisfies the RawRepresentable protocol.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html#/s:9Alamofire15DownloadRequestC7OptionsV8rawValueAESi_tcfc":{"name":"init(rawValue:)","abstract":"

    Creates a DownloadRequest.Options instance with the specified raw value.

    ","parent_name":"Options"},"Classes/DownloadRequest/Options.html":{"name":"Options","abstract":"

    A collection of options to be executed prior to moving a downloaded file from the temporary URL to the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC11Destinationa":{"name":"Destination","abstract":"

    A closure executed once a download request has successfully completed in order to determine where to move the","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC09suggestedB11Destination3for2in7options10Foundation3URLV011destinationJ0_AC7OptionsVAGtAJ_So17NSHTTPURLResponseCtcSo21NSSearchPathDirectoryV_So0nO10DomainMaskVAMtFZ":{"name":"suggestedDownloadDestination(for:in:options:)","abstract":"

    Creates a download file destination closure which uses the default file manager to move the temporary file to a","parent_name":"DownloadRequest"},"Classes/DownloadRequest/Downloadable.html":{"name":"Downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12downloadableAC12DownloadableOvp":{"name":"downloadable","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10resumeData10Foundation0E0VSgvp":{"name":"resumeData","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC7fileURL10Foundation0E0VSgvp":{"name":"fileURL","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC4task13forResumeData5usingSo16NSURLSessionTaskC10Foundation0G0V_So0I0CtF":{"name":"task(forResumeData:using:)","abstract":"

    Undocumented

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC6cancelACXDyF":{"name":"cancel()","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI3URLVSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation3URLVSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseData5queue17completionHandlerACXDSo012OS_dispatch_F0C_yAA0B8ResponseVy10Foundation0E0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response, a temporary URL and a","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DownloadRequest"},"Classes/DownloadRequest.html#/s:9Alamofire15DownloadRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DownloadRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC11convertibleAA21URLRequestConvertible_pvp":{"name":"convertible","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC4data10Foundation0B0VSgvp":{"name":"data","abstract":"

    Undocumented

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateyACXDs6ResultOyyts5Error_pG10Foundation10URLRequestVSg_So17NSHTTPURLResponseCAI0B0VSgtcF":{"name":"validate(_:)","abstract":"

    Validates the request, using the specified closure.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VSgGctF":{"name":"response(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8response5queue0D10Serializer17completionHandlerACXDSo012OS_dispatch_E0C_xyAA0B8ResponseVy16SerializedObjectQzGctAA0bkF8ProtocolRzlF":{"name":"response(queue:responseSerializer:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC08responseB05queue17completionHandlerACXDSo012OS_dispatch_E0C_yAA0B8ResponseVy10Foundation0B0VGctF":{"name":"responseData(queue:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC14responseString5queue8encoding17completionHandlerACXDSo012OS_dispatch_F0C_SS10FoundationE8EncodingVSgyAA0B8ResponseVySSGctF":{"name":"responseString(queue:encoding:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC12responseJSON5queue7options17completionHandlerACXDSo012OS_dispatch_F0C_So20NSJSONReadingOptionsVyAA0B8ResponseVyypGctF":{"name":"responseJSON(queue:options:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC17responseDecodable5queue7decoder17completionHandlerACXDSo012OS_dispatch_F0C_AA0B7Decoder_pyAA0B8ResponseVyxGctSeRzlF":{"name":"responseDecodable(queue:decoder:completionHandler:)","abstract":"

    Adds a handler to be called once the request has finished.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC10Validationa":{"name":"Validation","abstract":"

    A closure used to validate a request that takes a URL request, a URL response and data, and returns whether the","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate10statusCodeACXDx_tSTRzSi7ElementRtzlF":{"name":"validate(statusCode:)","abstract":"

    Validates that the response has a status code in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validate11contentTypeACXDxyXA_tSTRzSS7ElementRtzlF":{"name":"validate(contentType:)","abstract":"

    Validates that the response has a content type in the specified sequence.

    ","parent_name":"DataRequest"},"Classes/DataRequest.html#/s:9Alamofire11DataRequestC8validateACXDyF":{"name":"validate()","abstract":"

    Validates that the response has a status code in the default acceptable range of 200…299, and that the content","parent_name":"DataRequest"},"Classes/URLEncodedFormEncoder/Error.html#/s:9Alamofire21URLEncodedFormEncoderC5ErrorO17invalidRootObjectyAESScAEmF":{"name":"invalidRootObject(_:)","abstract":"

    An invalid root object was created by the encoder. Only keyed values are valid.

    ","parent_name":"Error"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO14percentEscapedyA2EmF":{"name":"percentEscaped","abstract":"

    Encodes spaces according to normal percent escaping rules (%20).

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13SpaceEncodingO12plusReplacedyA2EmF":{"name":"plusReplaced","abstract":"

    Encodes spaces as +,

    ","parent_name":"SpaceEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO8bracketsyA2EmF":{"name":"brackets","abstract":"

    An empty set of square brackets ([]) are sppended to the key for every value.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC13ArrayEncodingO10noBracketsyA2EmF":{"name":"noBrackets","abstract":"

    No brackets are appended to the key and the key is encoded as is.

    ","parent_name":"ArrayEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7numericyA2EmF":{"name":"numeric","abstract":"

    Encodes true as 1, false as 0.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html#/s:9Alamofire21URLEncodedFormEncoderC12BoolEncodingO7literalyA2EmF":{"name":"literal","abstract":"

    Encodes true as true, false as false.

    ","parent_name":"BoolEncoding"},"Classes/URLEncodedFormEncoder/BoolEncoding.html":{"name":"BoolEncoding","abstract":"

    Configures how Bool parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/ArrayEncoding.html":{"name":"ArrayEncoding","abstract":"

    Configures how Array parameters are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/SpaceEncoding.html":{"name":"SpaceEncoding","abstract":"

    Configures how spaces are encoded.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder/Error.html":{"name":"Error","abstract":"

    URLEncodedFormEncoder error.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncodingAC05ArrayF0Ovp":{"name":"arrayEncoding","abstract":"

    The ArrayEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC12boolEncodingAC04BoolF0Ovp":{"name":"boolEncoding","abstract":"

    The BoolEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13spaceEncodingAC05SpaceF0Ovp":{"name":"spaceEncoding","abstract":"

    The SpaceEncoding to use.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC17allowedCharacters10Foundation12CharacterSetVvp":{"name":"allowedCharacters","abstract":"

    The CharacterSet of allowed characters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC13arrayEncoding04boolF005spaceF017allowedCharactersA2C05ArrayF0O_AC04BoolF0OAC05SpaceF0O10Foundation12CharacterSetVtcfc":{"name":"init(arrayEncoding:boolEncoding:spaceEncoding:allowedCharacters:)","abstract":"

    Creates an instance from the supplied parameters.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodeySSSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as a URL form encoded String.

    ","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormEncoder.html#/s:9Alamofire21URLEncodedFormEncoderC6encodey10Foundation4DataVSE_pKF":{"name":"encode(_:)","abstract":"

    Encodes the value as Data. This is performed by first creating an encoded String and then returning the","parent_name":"URLEncodedFormEncoder"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO15methodDependentyA2EmF":{"name":"methodDependent","abstract":"

    Applies the encoded query string to any existing query string for .get, .head, and .delete request.","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO11queryStringyA2EmF":{"name":"queryString","abstract":"

    Applies the encoded query string to any existing query string from the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11DestinationO8httpBodyyA2EmF":{"name":"httpBody","abstract":"

    Applies the encoded query string to the httpBody of the URLRequest.

    ","parent_name":"Destination"},"Classes/URLEncodedFormParameterEncoder/Destination.html":{"name":"Destination","abstract":"

    Defines where the URL-encoded string should be set for each URLRequest.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoderAA0bcE0Cvp":{"name":"encoder","abstract":"

    The URLEncodedFormEncoder to use.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC11destinationAC11DestinationOvp":{"name":"destination","abstract":"

    The Destination for the URL-encoded string.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire30URLEncodedFormParameterEncoderC7encoder11destinationAcA0bcE0C_AC11DestinationOtcfc":{"name":"init(encoder:destination:)","abstract":"

    Creates an instance with the provided URLEncodedFormEncoder instance and Destination value.

    ","parent_name":"URLEncodedFormParameterEncoder"},"Classes/URLEncodedFormParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"URLEncodedFormParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7defaultACvpZ":{"name":"default","abstract":"

    Returns an encoder with default parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC13prettyPrintedACvpZ":{"name":"prettyPrinted","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .prettyPrinted.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC10sortedKeysACvpZ":{"name":"sortedKeys","abstract":"

    Returns an encoder with JSONEncoder.outputFormatting set to .sortedKeys.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoder10Foundation11JSONEncoderCvp":{"name":"encoder","abstract":"

    JSONEncoder used to encode parameters.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire20JSONParameterEncoderC7encoderAC10Foundation11JSONEncoderC_tcfc":{"name":"init(encoder:)","abstract":"

    Creates an instance with the provided JSONEncoder.

    ","parent_name":"JSONParameterEncoder"},"Classes/JSONParameterEncoder.html#/s:9Alamofire16ParameterEncoderP6encode_4into10Foundation10URLRequestVqd__Sg_AHtKSERd__lF":{"name":"encode(_:into:)","parent_name":"JSONParameterEncoder"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"AlamofireNotifications"},"Classes/AlamofireNotifications.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"AlamofireNotifications"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO11initializedyA2EmF":{"name":"initialized","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO7resumedyA2EmF":{"name":"resumed","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9suspendedyA2EmF":{"name":"suspended","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO9cancelledyA2EmF":{"name":"cancelled","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html#/s:9Alamofire7RequestC5StateO8finishedyA2EmF":{"name":"finished","abstract":"

    Undocumented

    ","parent_name":"State"},"Classes/Request/State.html":{"name":"State","abstract":"

    State of the Request, with managed transitions between states set when calling resume(), suspend(), or","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id10Foundation4UUIDVvp":{"name":"id","abstract":"

    UUID prividing a unique identifier for the Request, used in the Hashable and Equatable conformances.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15underlyingQueueSo17OS_dispatch_queueCvp":{"name":"underlyingQueue","abstract":"

    The serial queue for all internal async actions.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC18serializationQueueSo17OS_dispatch_queueCvp":{"name":"serializationQueue","abstract":"

    The queue used for all serialization actions. By default it’s a serial queue that targets underlyingQueue.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12eventMonitorAA05EventD0_pSgvp":{"name":"eventMonitor","abstract":"

    EventMonitor used for event callbacks.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11interceptorAA0B11Interceptor_pSgvp":{"name":"interceptor","abstract":"

    The Request‘s interceptor.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8delegateAA0B8Delegate_pSgvp":{"name":"delegate","abstract":"

    The Request‘s delegate.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5stateAC5StateOvp":{"name":"state","abstract":"

    State of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13isInitializedSbvp":{"name":"isInitialized","abstract":"

    Returns whether state is .initialized.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9isResumedSbvp":{"name":"isResumed","abstract":"

    Returns whether state is.resumed`.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isSuspendedSbvp":{"name":"isSuspended","abstract":"

    Returns whether state is .suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11isCancelledSbvp":{"name":"isCancelled","abstract":"

    Returns whether state is .cancelled.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10isFinishedSbvp":{"name":"isFinished","abstract":"

    Returns whether state is .finished.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15ProgressHandlera":{"name":"ProgressHandler","abstract":"

    Closure type executed when monitoring the upload or download progress of a request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgressSo10NSProgressCvp":{"name":"uploadProgress","abstract":"

    Progress of the upload of the body of the executed URLRequest. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgressSo10NSProgressCvp":{"name":"downloadProgress","abstract":"

    Progress of the download of any response data. Reset to 0 if the Request is retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC15redirectHandlerAA08RedirectD0_pSgvp":{"name":"redirectHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21cachedResponseHandlerAA06CacheddE0_pSgvp":{"name":"cachedResponseHandler","abstract":"

    Undocumented

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10credentialSo15NSURLCredentialCSgvp":{"name":"credential","abstract":"

    URLCredential used for authentication challenges. Created by calling one of the authenticate methods.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8requestsSay10Foundation10URLRequestVGvp":{"name":"requests","abstract":"

    All URLRequests created on behalf of the Request, including original and adapted requests.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC05firstB010Foundation10URLRequestVSgvp":{"name":"firstRequest","abstract":"

    First URLRequest created on behalf of the Request. May not be the first one actually executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC04lastB010Foundation10URLRequestVSgvp":{"name":"lastRequest","abstract":"

    Last URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7request10Foundation10URLRequestVSgvp":{"name":"request","abstract":"

    Current URLRequest created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC17performedRequestsSay10Foundation10URLRequestVGvp":{"name":"performedRequests","abstract":"

    URLRequests from all of the URLSessionTasks executed on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8responseSo17NSHTTPURLResponseCSgvp":{"name":"response","abstract":"

    HTTPURLResponse received from the server, if any. If the Request was retried, this is the response of the","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5tasksSaySo16NSURLSessionTaskCGvp":{"name":"tasks","abstract":"

    All URLSessionTasks created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC9firstTaskSo012NSURLSessionD0CSgvp":{"name":"firstTask","abstract":"

    First URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8lastTaskSo012NSURLSessionD0CSgvp":{"name":"lastTask","abstract":"

    Last URLSessionTask crated on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC4taskSo16NSURLSessionTaskCSgvp":{"name":"task","abstract":"

    Current URLSessionTask created on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10allMetricsSaySo016NSURLSessionTaskD0CGvp":{"name":"allMetrics","abstract":"

    All URLSessionTaskMetrics gathered on behalf of the Request. Should correspond to the tasks created.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12firstMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"firstMetrics","abstract":"

    First URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11lastMetricsSo016NSURLSessionTaskD0CSgvp":{"name":"lastMetrics","abstract":"

    Last URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7metricsSo23NSURLSessionTaskMetricsCSgvp":{"name":"metrics","abstract":"

    Current URLSessionTaskMetrics gathered on behalf of the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC10retryCountSivp":{"name":"retryCount","abstract":"

    Number of times the Request has been retried.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC5errors5Error_pSgvp":{"name":"error","abstract":"

    Error returned from Alamofire internally, from the network request directly, or any validators executed.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC2id15underlyingQueue013serializationE012eventMonitor11interceptor8delegateAC10Foundation4UUIDV_So17OS_dispatch_queueCAnA05EventH0_pSgAA0B11Interceptor_pSgAA0B8Delegate_ptcfc":{"name":"init(id:underlyingQueue:serializationQueue:eventMonitor:interceptor:delegate:)","abstract":"

    Default initializer for the Request superclass.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6cancelACXDyF":{"name":"cancel()","abstract":"

    Cancels the Request. Once cancelled, a Request can no longer be resumed or suspended.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7suspendACXDyF":{"name":"suspend()","abstract":"

    Suspends the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC6resumeACXDyF":{"name":"resume()","abstract":"

    Resumes the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate8username8password11persistenceACXDSS_SSSo26NSURLCredentialPersistenceVtF":{"name":"authenticate(username:password:persistence:)","abstract":"

    Associates a credential using the provided values with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC12authenticate4withACXDSo15NSURLCredentialC_tF":{"name":"authenticate(with:)","abstract":"

    Associates the provided credential with the Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16downloadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"downloadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is read from the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC14uploadProgress5queue7closureACXDSo012OS_dispatch_E0C_ySo10NSProgressCctF":{"name":"uploadProgress(queue:closure:)","abstract":"

    Sets a closure to be called periodically during the lifecycle of the Request as data is sent to the server.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC8redirect5usingACXDAA15RedirectHandler_p_tF":{"name":"redirect(using:)","abstract":"

    Sets the redirect handler for the Request which will be used if a redirect response is encountered.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC13cacheResponse5usingACXDAA06CachedD7Handler_p_tF":{"name":"cacheResponse(using:)","abstract":"

    Sets the cached response handler for the Request which will be used when attempting to cache a response.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC7cleanupyyF":{"name":"cleanup()","abstract":"

    Final cleanup step executed when a Request finishes response serialization.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didResumeNotificationSo18NSNotificationNameavpZ":{"name":"didResumeNotification","abstract":"

    Posted when a Request is resumed. The Notification contains the resumed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC22didSuspendNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendNotification","abstract":"

    Posted when a Request is suspended. The Notification contains the suspended Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didCancelNotificationSo18NSNotificationNameavpZ":{"name":"didCancelNotification","abstract":"

    Posted when a Request is cancelled. The Notification contains the cancelled Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC21didFinishNotificationSo18NSNotificationNameavpZ":{"name":"didFinishNotification","abstract":"

    Posted when a Request is finished. The Notification contains the completed Request.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didResumeTaskNotificationSo18NSNotificationNameavpZ":{"name":"didResumeTaskNotification","abstract":"

    Posted when a URLSessionTask is resumed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC26didSuspendTaskNotificationSo18NSNotificationNameavpZ":{"name":"didSuspendTaskNotification","abstract":"

    Posted when a URLSessionTask is suspended. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC25didCancelTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCancelTaskNotification","abstract":"

    Posted when a URLSessionTask is cancelled. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC27didCompleteTaskNotificationSo18NSNotificationNameavpZ":{"name":"didCompleteTaskNotification","abstract":"

    Posted when a URLSessionTask is completed. The Notification contains the Request associated with the URLSessionTask.

    ","parent_name":"Request"},"Classes/Request.html#/s:SQ2eeoiySbx_xtFZ":{"name":"==(_:_:)","parent_name":"Request"},"Classes/Request.html#/s:SH4hash4intoys6HasherVz_tF":{"name":"hash(into:)","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC11descriptionSSvp":{"name":"description","abstract":"

    A textual representation of this instance, including the HTTPMethod and URL if the URLRequest has been","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16debugDescriptionSSvp":{"name":"debugDescription","abstract":"

    A textual representation of this instance in the form of a cURL command.

    ","parent_name":"Request"},"Classes/Request.html#/s:9Alamofire7RequestC16ValidationResulta":{"name":"ValidationResult","abstract":"

    Used to represent whether a validation succeeded or failed.

    ","parent_name":"Request"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO14ethernetOrWiFiyA2EmF":{"name":"ethernetOrWiFi","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/ConnectionType.html#/s:9Alamofire26NetworkReachabilityManagerC14ConnectionTypeO4wwanyA2EmF":{"name":"wwan","abstract":"

    Undocumented

    ","parent_name":"ConnectionType"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO7unknownyA2EmF":{"name":"unknown","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO12notReachableyA2EmF":{"name":"notReachable","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html#/s:9Alamofire26NetworkReachabilityManagerC0bC6StatusO9reachableyAeC14ConnectionTypeOcAEmF":{"name":"reachable(_:)","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityStatus"},"Classes/NetworkReachabilityManager/NetworkReachabilityStatus.html":{"name":"NetworkReachabilityStatus","abstract":"

    Defines the various states of network reachability.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager/ConnectionType.html":{"name":"ConnectionType","abstract":"

    Defines the various connection types detected by reachability flags.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8Listenera":{"name":"Listener","abstract":"

    A closure executed when the network reachability status changes. The closure takes a single argument: the","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC11isReachableSbvp":{"name":"isReachable","abstract":"

    Whether the network is currently reachable.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC17isReachableOnWWANSbvp":{"name":"isReachableOnWWAN","abstract":"

    Whether the network is currently reachable over the WWAN interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC27isReachableOnEthernetOrWiFiSbvp":{"name":"isReachableOnEthernetOrWiFi","abstract":"

    Whether the network is currently reachable over Ethernet or WiFi interface.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC07networkC6StatusAC0bcF0Ovp":{"name":"networkReachabilityStatus","abstract":"

    The current network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13listenerQueueSo17OS_dispatch_queueCvp":{"name":"listenerQueue","abstract":"

    The dispatch queue to execute the listener closure on.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC8listeneryAC0bC6StatusOcSgvp":{"name":"listener","abstract":"

    A closure executed when the network reachability status changes.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC5flagsSo09SCNetworkC5FlagsVSgvp":{"name":"flags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13previousFlagsSo09SCNetworkcF0Vvp":{"name":"previousFlags","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC4hostACSgSS_tcfc":{"name":"init(host:)","abstract":"

    Creates a NetworkReachabilityManager instance with the specified host.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCACSgycfc":{"name":"init()","abstract":"

    Creates a NetworkReachabilityManager instance that monitors the address 0.0.0.0.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerCfd":{"name":"deinit","abstract":"

    Undocumented

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC14startListeningSbyF":{"name":"startListening()","abstract":"

    Starts listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/NetworkReachabilityManager.html#/s:9Alamofire26NetworkReachabilityManagerC13stopListeningyyF":{"name":"stopListening()","abstract":"

    Stops listening for changes in network reachability status.

    ","parent_name":"NetworkReachabilityManager"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC23encodingMemoryThresholds6UInt64VvpZ":{"name":"encodingMemoryThreshold","abstract":"

    Default memory threshold used when encoding MultipartFormData, in bytes.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11contentTypeSSvp":{"name":"contentType","abstract":"

    The Content-Type header value containing the boundary used to generate the multipart/form-data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC13contentLengths6UInt64Vvp":{"name":"contentLength","abstract":"

    The content length of all body parts used to generate the multipart/form-data not including the boundaries.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC8boundarySSvp":{"name":"boundary","abstract":"

    The boundary used to separate the body parts in the encoded form data.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC11fileManager8boundaryACSo06NSFileF0C_SSSgtcfc":{"name":"init(fileManager:boundary:)","abstract":"

    Creates a multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation0D0V_S2SSgAKtF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the data and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withNamey10Foundation3URLV_SStF":{"name":"append(_:withName:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_8withName04fileG08mimeTypey10Foundation3URLV_S3StF":{"name":"append(_:withName:fileName:mimeType:)","abstract":"

    Creates a body part from the file and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength4name8fileName8mimeTypeySo13NSInputStreamC_s6UInt64VS3StF":{"name":"append(_:withLength:name:fileName:mimeType:)","abstract":"

    Creates a body part from the stream and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6append_10withLength7headersySo13NSInputStreamC_s6UInt64VAA11HTTPHeadersVtF":{"name":"append(_:withLength:headers:)","abstract":"

    Creates a body part with the headers, stream and length and appends it to the multipart form data object.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC6encode10Foundation0D0VyKF":{"name":"encode()","abstract":"

    Encodes all the appended body parts into a single Data value.

    ","parent_name":"MultipartFormData"},"Classes/MultipartFormData.html#/s:9Alamofire17MultipartFormDataC012writeEncodedD02toy10Foundation3URLV_tKF":{"name":"writeEncodedData(to:)","abstract":"

    Writes the appended body parts into the given file URL.

    ","parent_name":"MultipartFormData"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32sessionDidBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtcSgvp":{"name":"sessionDidBecomeInvalidWithError","abstract":"

    Closure called on the urlSession(_:didBecomeInvalidWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23taskDidReceiveChallengeySo12NSURLSessionC_So0I4TaskCSo019NSURLAuthenticationH0CtcSgvp":{"name":"taskDidReceiveChallenge","abstract":"

    Closure called on the urlSession(_:task:didReceive:completionHandler:).

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC19taskDidSendBodyDataySo12NSURLSessionC_So0J4TaskCs5Int64VA2JtcSgvp":{"name":"taskDidSendBodyData","abstract":"

    Closure that receives urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21taskNeedNewBodyStreamySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskNeedNewBodyStream","abstract":"

    Closure called on the urlSession(_:task:needNewBodyStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskWillPerformHTTPRedirectionySo12NSURLSessionC_So0I4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtcSgvp":{"name":"taskWillPerformHTTPRedirection","abstract":"

    Closure called on the urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30taskDidFinishCollectingMetricsySo12NSURLSessionC_So0J4TaskCSo0jkI0CtcSgvp":{"name":"taskDidFinishCollectingMetrics","abstract":"

    Closure called on the urlSession(_:task:didFinishCollecting:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC15taskDidCompleteySo12NSURLSessionC_So0H4TaskCs5Error_pSgtcSgvp":{"name":"taskDidComplete","abstract":"

    Closure called on the urlSession(_:task:didCompleteWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28taskIsWaitingForConnectivityySo12NSURLSessionC_So0J4TaskCtcSgvp":{"name":"taskIsWaitingForConnectivity","abstract":"

    Closure called on the urlSession(_:taskIsWaitingForConnectivity:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC22dataTaskDidReceiveDataySo12NSURLSessionC_So0jiF0C10Foundation0I0VtcSgvp":{"name":"dataTaskDidReceiveData","abstract":"

    Closure that recieves the urlSession(_:dataTask:didReceive:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC25dataTaskWillCacheResponseySo12NSURLSessionC_So0j4DataF0CSo19NSCachedURLResponseCtcSgvp":{"name":"dataTaskWillCacheResponse","abstract":"

    Closure called on the urlSession(_:dataTask:willCacheResponse:completionHandler:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC37downloadTaskDidFinishDownloadingToURLySo12NSURLSessionC_So0l8DownloadF0C10Foundation0K0VtcSgvp":{"name":"downloadTaskDidFinishDownloadingToURL","abstract":"

    Closure called on the urlSession(_:downloadTask:didFinishDownloadingTo:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC24downloadTaskDidWriteDataySo12NSURLSessionC_So0j8DownloadF0Cs5Int64VA2JtcSgvp":{"name":"downloadTaskDidWriteData","abstract":"

    Closure called on the urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC29downloadTaskDidResumeAtOffsetySo12NSURLSessionC_So0k8DownloadF0Cs5Int64VAJtcSgvp":{"name":"downloadTaskDidResumeAtOffset","abstract":"

    Closure called on the urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateURLRequestyAA7RequestC_10Foundation0H0VtcSgvp":{"name":"requestDidCreateURLRequest","abstract":"

    Closure called on the request(_:didCreateURLRequest:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateURLRequestWithErroryAA7RequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToCreateURLRequestWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC038requestDidAdaptInitialRequestToAdaptedI0yAA0I0C_10Foundation10URLRequestVAItcSgvp":{"name":"requestDidAdaptInitialRequestToAdaptedRequest","abstract":"

    Closure called on the request(_:didAdaptInitialRequest:to:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC40requestDidFailToAdaptURLRequestWithErroryAA7RequestC_10Foundation0J0Vs0L0_ptcSgvp":{"name":"requestDidFailToAdaptURLRequestWithError","abstract":"

    Closure called on the request(_:didFailToAdaptURLRequest:withError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCreateTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCreateTask","abstract":"

    Closure called on the request(_:didCreateTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidGatherMetricsyAA7RequestC_So016NSURLSessionTaskH0CtcSgvp":{"name":"requestDidGatherMetrics","abstract":"

    Closure called on the request(_:didGatherMetrics:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC32requestDidFailTaskEarlyWithErroryAA7RequestC_So012NSURLSessionH0Cs0K0_ptcSgvp":{"name":"requestDidFailTaskEarlyWithError","abstract":"

    Closure called on the request(_:didFailTask:earlyWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidCompleteTaskWithErroryAA7RequestC_So012NSURLSessionH0Cs0J0_pSgtcSgvp":{"name":"requestDidCompleteTaskWithError","abstract":"

    Closure called on the request(_:didCompleteTask:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestIsRetryingyAA7RequestCcSgvp":{"name":"requestIsRetrying","abstract":"

    Closure called on the requestIsRetrying(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidFinishyAA7RequestCcSgvp":{"name":"requestDidFinish","abstract":"

    Closure called on the requestDidFinish(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidResumeyAA7RequestCcSgvp":{"name":"requestDidResume","abstract":"

    Closure called on the requestDidResume(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidResumeTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidResumeTask","abstract":"

    Closure called on the request(_:didResumeTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC17requestDidSuspendyAA7RequestCcSgvp":{"name":"requestDidSuspend","abstract":"

    Closure called on the requestDidSuspend(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC21requestDidSuspendTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidSuspendTask","abstract":"

    Closure called on the request(_:didSuspendTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC16requestDidCancelyAA7RequestCcSgvp":{"name":"requestDidCancel","abstract":"

    Closure called on the requestDidCancel(_:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC20requestDidCancelTaskyAA7RequestC_So012NSURLSessionH0CtcSgvp":{"name":"requestDidCancelTask","abstract":"

    Closure called on the request(_:didCancelTask:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC47requestDidValidateRequestResponseDataWithResultyAA0jH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG0J0VSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseDataWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:data:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC23requestDidParseResponseyAA11DataRequestC_AA0iH0Vy10Foundation0I0VSgGtcSgvp":{"name":"requestDidParseResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC26requestDidCreateUploadableyAA13UploadRequestC_AF0H0OtcSgvp":{"name":"requestDidCreateUploadable","abstract":"

    Closure called on the request(_:didCreateUploadable:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC41requestDidFailToCreateUploadableWithErroryAA13UploadRequestC_s0L0_ptcSgvp":{"name":"requestDidFailToCreateUploadableWithError","abstract":"

    Closure called on the request(_:didFailToCreateUploadableWithError:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC28requestDidProvideInputStreamyAA13UploadRequestC_So07NSInputI0CtcSgvp":{"name":"requestDidProvideInputStream","abstract":"

    Closure called on the request(_:didProvideInputStream:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC46requestDidFinishDownloadingUsingTaskWithResultyAA15DownloadRequestC_So012NSURLSessionJ0Cs0L0Oy10Foundation3URLVs5Error_pGtcSgvp":{"name":"requestDidFinishDownloadingUsingTaskWithResult","abstract":"

    Closure called on the request(_:didFinishDownloadingUsing:with:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC30requestDidCreateDestinationURLyAA15DownloadRequestC_10Foundation0I0VtcSgvp":{"name":"requestDidCreateDestinationURL","abstract":"

    Closure called on the request(_:didCreateDestinationURL:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC50requestDidValidateRequestResponseFileURLWithResultyAA08DownloadH0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAG3URLVSgs0L0Oyyts5Error_pGtcSgvp":{"name":"requestDidValidateRequestResponseFileURLWithResult","abstract":"

    Closure called on the request(_:didValidateRequest:response:temporaryURL:destinationURL:withResult:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC31requestDidParseDownloadResponseyAA0H7RequestC_AA0hI0Vy10Foundation3URLVSgGtcSgvp":{"name":"requestDidParseDownloadResponse","abstract":"

    Closure called on the request(_:didParseResponse:) event.

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire19ClosureEventMonitorC5queueACSo012OS_dispatch_E0C_tcfc":{"name":"init(queue:)","abstract":"

    Undocumented

    ","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"ClosureEventMonitor"},"Classes/ClosureEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"ClosureEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP5queueSo012OS_dispatch_D0Cvp":{"name":"queue","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_25didBecomeInvalidWithErrorySo12NSURLSessionC_s0J0_pSgtF":{"name":"urlSession(_:didBecomeInvalidWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task10didReceiveySo12NSURLSessionC_So0I4TaskCSo28NSURLAuthenticationChallengeCtF":{"name":"urlSession(_:task:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task15didSendBodyData14totalBytesSent0kl10ExpectedToH0ySo12NSURLSessionC_So0P4TaskCs5Int64VA2NtF":{"name":"urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_22taskNeedsNewBodyStreamySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskNeedsNewBodyStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task26willPerformHTTPRedirection10newRequestySo12NSURLSessionC_So0L4TaskCSo17NSHTTPURLResponseC10Foundation10URLRequestVtF":{"name":"urlSession(_:task:willPerformHTTPRedirection:newRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task19didFinishCollectingySo12NSURLSessionC_So0J4TaskCSo0jK7MetricsCtF":{"name":"urlSession(_:task:didFinishCollecting:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_4task20didCompleteWithErrorySo12NSURLSessionC_So0K4TaskCs0J0_pSgtF":{"name":"urlSession(_:task:didCompleteWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_28taskIsWaitingForConnectivityySo12NSURLSessionC_So0K4TaskCtF":{"name":"urlSession(_:taskIsWaitingForConnectivity:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask10didReceiveySo12NSURLSessionC_So0j4DataG0C10Foundation0K0VtF":{"name":"urlSession(_:dataTask:didReceive:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_8dataTask17willCacheResponseySo12NSURLSessionC_So0k4DataG0CSo19NSCachedURLResponseCtF":{"name":"urlSession(_:dataTask:willCacheResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask17didResumeAtOffset18expectedTotalBytesySo12NSURLSessionC_So0o8DownloadG0Cs5Int64VAMtF":{"name":"urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask12didWriteData17totalBytesWritten0kl10ExpectedToI0ySo12NSURLSessionC_So0p8DownloadG0Cs5Int64VA2NtF":{"name":"urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP10urlSession_12downloadTask22didFinishDownloadingToySo12NSURLSessionC_So0l8DownloadG0C10Foundation3URLVtF":{"name":"urlSession(_:downloadTask:didFinishDownloadingTo:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateURLRequestyAA7RequestC_10Foundation0G0VtF":{"name":"request(_:didCreateURLRequest:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateURLRequestWithErroryAA7RequestC_s0K0_ptF":{"name":"request(_:didFailToCreateURLRequestWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_22didAdaptInitialRequest2toyAA0H0C_10Foundation10URLRequestVAKtF":{"name":"request(_:didAdaptInitialRequest:to:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_24didFailToAdaptURLRequest9withErroryAA7RequestC_10Foundation0I0Vs0K0_ptF":{"name":"request(_:didFailToAdaptURLRequest:withError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCreateTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCreateTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didGatherMetricsyAA7RequestC_So016NSURLSessionTaskG0CtF":{"name":"request(_:didGatherMetrics:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_11didFailTask14earlyWithErroryAA7RequestC_So012NSURLSessionG0Cs0J0_ptF":{"name":"request(_:didFailTask:earlyWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_15didCompleteTask4withyAA7RequestC_So012NSURLSessionG0Cs5Error_pSgtF":{"name":"request(_:didCompleteTask:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestIsRetryingyyAA7RequestCF":{"name":"requestIsRetrying(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidFinishyyAA7RequestCF":{"name":"requestDidFinish(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidResumeyyAA7RequestCF":{"name":"requestDidResume(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didResumeTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didResumeTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP17requestDidSuspendyyAA7RequestCF":{"name":"requestDidSuspend(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_14didSuspendTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didSuspendTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP16requestDidCancelyyAA7RequestCF":{"name":"requestDidCancel(_:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_13didCancelTaskyAA7RequestC_So012NSURLSessionG0CtF":{"name":"request(_:didCancelTask:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response4data10withResultyAA04DataG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0L0VSgs0K0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:data:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vy10Foundation0H0VSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA11DataRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_19didCreateUploadableyAA13UploadRequestC_AG0G0OtF":{"name":"request(_:didCreateUploadable:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_34didFailToCreateUploadableWithErroryAA13UploadRequestC_s0K0_ptF":{"name":"request(_:didFailToCreateUploadableWithError:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_21didProvideInputStreamyAA13UploadRequestC_So07NSInputH0CtF":{"name":"request(_:didProvideInputStream:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_25didFinishDownloadingUsing4withyAA15DownloadRequestC_So16NSURLSessionTaskCs6ResultOy10Foundation3URLVs5Error_pGtF":{"name":"request(_:didFinishDownloadingUsing:with:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_23didCreateDestinationURLyAA15DownloadRequestC_10Foundation0H0VtF":{"name":"request(_:didCreateDestinationURL:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_18didValidateRequest8response7fileURL10withResultyAA08DownloadG0C_10Foundation10URLRequestVSgSo17NSHTTPURLResponseCAK0J0VSgs0L0Oyyts5Error_pGtF":{"name":"request(_:didValidateRequest:response:fileURL:withResult:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vy10Foundation3URLVSgGtF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html#/s:9Alamofire12EventMonitorP7request_16didParseResponseyAA15DownloadRequestC_AA0hG0Vyqd__GtlF":{"name":"request(_:didParseResponse:)","parent_name":"CompositeEventMonitor"},"Classes/CompositeEventMonitor.html":{"name":"CompositeEventMonitor","abstract":"

    An EventMonitor which can contain multiple EventMonitors and calls their methods on their queues.

    "},"Classes/ClosureEventMonitor.html":{"name":"ClosureEventMonitor","abstract":"

    EventMonitor that allows optional closures to be set to receive events.

    "},"Classes/MultipartFormData.html":{"name":"MultipartFormData","abstract":"

    Constructs multipart/form-data for uploads within an HTTP or HTTPS body. There are currently two ways to encode"},"Classes/NetworkReachabilityManager.html":{"name":"NetworkReachabilityManager","abstract":"

    The NetworkReachabilityManager class listens for reachability changes of hosts and addresses for both WWAN and"},"Classes/Request.html":{"name":"Request","abstract":"

    Request is the common superclass of all Alamofire request types and provides common state, delegate, and callback"},"Classes/AlamofireNotifications.html":{"name":"AlamofireNotifications","abstract":"

    EventMonitor that provides Alamofire’s notifications.

    "},"Classes/JSONParameterEncoder.html":{"name":"JSONParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as JSON body data.

    "},"Classes/URLEncodedFormParameterEncoder.html":{"name":"URLEncodedFormParameterEncoder","abstract":"

    A ParameterEncoder that encodes types as URL-encoded query strings to be set on the URL or as body data, depending"},"Classes/URLEncodedFormEncoder.html":{"name":"URLEncodedFormEncoder","abstract":"

    An object that encodes instances into URL-encoded query strings.

    "},"Classes/DataRequest.html":{"name":"DataRequest","abstract":"

    Undocumented

    "},"Classes/DownloadRequest.html":{"name":"DownloadRequest","abstract":"

    Undocumented

    "},"Classes/UploadRequest.html":{"name":"UploadRequest","abstract":"

    Undocumented

    "},"Classes/Adapter.html":{"name":"Adapter","abstract":"

    Undocumented

    "},"Classes/Retrier.html":{"name":"Retrier","abstract":"

    Undocumented

    "},"Classes/Interceptor.html":{"name":"Interceptor","abstract":"

    Undocumented

    "},"Classes/DataResponseSerializer.html":{"name":"DataResponseSerializer","abstract":"

    A ResponseSerializer that performs minimal reponse checking and returns any response data as-is. By default, a"},"Classes/StringResponseSerializer.html":{"name":"StringResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a String. By default, a request returning nil or no"},"Classes/JSONResponseSerializer.html":{"name":"JSONResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data using JSONSerialization. By default, a request returning"},"Classes/DecodableResponseSerializer.html":{"name":"DecodableResponseSerializer","abstract":"

    A ResponseSerializer that decodes the response data as a generic value using any type that conforms to"},"Classes/RetryPolicy.html":{"name":"RetryPolicy","abstract":"

    A retry policy that retries requests using an exponential backoff for allowed HTTP methods and HTTP status codes"},"Classes/ConnectionLostRetryPolicy.html":{"name":"ConnectionLostRetryPolicy","abstract":"

    A retry policy that automatically retries idempotent requests for network connection lost errors. For more"},"Classes/ServerTrustManager.html":{"name":"ServerTrustManager","abstract":"

    Responsible for managing the mapping of ServerTrustEvaluating values to given hosts.

    "},"Classes/DefaultTrustEvaluator.html":{"name":"DefaultTrustEvaluator","abstract":"

    An evaluator which uses the default server trust evaluation while allowing you to control whether to validate the"},"Classes/RevocationTrustEvaluator.html":{"name":"RevocationTrustEvaluator","abstract":"

    An evaluator which Uses the default and revoked server trust evaluations allowing you to control whether to validate"},"Classes/PinnedCertificatesTrustEvaluator.html":{"name":"PinnedCertificatesTrustEvaluator","abstract":"

    Uses the pinned certificates to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/PublicKeysTrustEvaluator.html":{"name":"PublicKeysTrustEvaluator","abstract":"

    Uses the pinned public keys to validate the server trust. The server trust is considered valid if one of the pinned"},"Classes/CompositeTrustEvaluator.html":{"name":"CompositeTrustEvaluator","abstract":"

    Uses the provided evaluators to validate the server trust. The trust is only considered valid if all of the"},"Classes/DisabledEvaluator.html":{"name":"DisabledEvaluator","abstract":"

    Disables all evaluation which in turn will always consider any server trust as valid.

    "},"Classes/Session.html":{"name":"Session","abstract":"

    Undocumented

    "},"Classes/SessionDelegate.html":{"name":"SessionDelegate","abstract":"

    Undocumented

    "},"Classes.html":{"name":"Classes","abstract":"

    The following classes are available globally.

    "},"Enums.html":{"name":"Enumerations","abstract":"

    The following enumerations are available globally.

    "},"Extensions.html":{"name":"Extensions","abstract":"

    The following extensions are available globally.

    "},"Functions.html":{"name":"Functions","abstract":"

    The following functions are available globally.

    "},"Protocols.html":{"name":"Protocols","abstract":"

    The following protocols are available globally.

    "},"Structs.html":{"name":"Structures","abstract":"

    The following structures are available globally.

    "},"Typealiases.html":{"name":"Type Aliases","abstract":"

    The following type aliases are available globally.

    "}} \ No newline at end of file diff --git a/docs/undocumented.json b/docs/undocumented.json index 127e5db45..b0f8b53eb 100644 --- a/docs/undocumented.json +++ b/docs/undocumented.json @@ -1,1524 +1,1482 @@ { "warnings": [ { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 47, "symbol": "AFError.ParameterEncodingFailureReason.missingURL", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 48, "symbol": "AFError.ParameterEncodingFailureReason.jsonEncodingFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 92, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartURLInvalid(url:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 93, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFilenameInvalid(in:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 94, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileNotReachable(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 95, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileNotReachableWithError(atURL:error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 96, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileIsDirectory(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 97, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileSizeNotAvailable(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 98, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartFileSizeQueryFailedWithError(forURL:error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 99, "symbol": "AFError.MultipartEncodingFailureReason.bodyPartInputStreamCreationFailed(for:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 101, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamCreationFailed(for:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 102, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamFileAlreadyExists(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 103, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamURLInvalid(url:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 104, "symbol": "AFError.MultipartEncodingFailureReason.outputStreamWriteFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 106, "symbol": "AFError.MultipartEncodingFailureReason.inputStreamReadFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 119, "symbol": "AFError.ResponseValidationFailureReason.dataFileNil", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 120, "symbol": "AFError.ResponseValidationFailureReason.dataFileReadFailed(at:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 121, "symbol": "AFError.ResponseValidationFailureReason.missingContentType(acceptableContentTypes:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 122, "symbol": "AFError.ResponseValidationFailureReason.unacceptableContentType(acceptableContentTypes:responseContentType:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", "line": 123, "symbol": "AFError.ResponseValidationFailureReason.unacceptableStatusCode(code:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 165, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 167, "symbol": "AFError.ServerTrustFailureReason.noRequiredEvaluator(host:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 188, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 190, "symbol": "AFError.sessionDeinitialized", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 189, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 191, "symbol": "AFError.sessionInvalidated(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 190, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 192, "symbol": "AFError.explicitlyCancelled", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 191, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 193, "symbol": "AFError.invalidURL(url:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 192, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 194, "symbol": "AFError.parameterEncodingFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 193, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 195, "symbol": "AFError.parameterEncoderFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 194, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 196, "symbol": "AFError.multipartEncodingFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 195, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 197, "symbol": "AFError.requestAdaptationFailed(error:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 196, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 198, "symbol": "AFError.responseValidationFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 197, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 199, "symbol": "AFError.responseSerializationFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 198, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 200, "symbol": "AFError.serverTrustEvaluationFailed(reason:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 199, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 201, "symbol": "AFError.requestRetryFailed(retryError:originalError:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 213, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 215, "symbol": "AFError.isSessionDeinitializedError", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 219, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 221, "symbol": "AFError.isSessionInvalidatedError", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFError.swift", - "line": 245, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFError.swift", + "line": 247, "symbol": "AFError.isParameterEncoderError", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AFResult.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AFResult.swift", "line": 27, "symbol": "AFResult", "symbol_kind": "source.lang.swift.decl.typealias", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AlamofireExtended.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AlamofireExtended.swift", "line": 37, "symbol": "AlamofireExtended.ExtendedType", "symbol_kind": "source.lang.swift.decl.associatedtype", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AlamofireExtended.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AlamofireExtended.swift", "line": 46, "symbol": "AlamofireExtended.af", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/AlamofireExtended.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/AlamofireExtended.swift", "line": 51, "symbol": "AlamofireExtended.af", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/CachedResponseHandler.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/CachedResponseHandler.swift", "line": 57, "symbol": "ResponseCacher.Behavior.cache", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/CachedResponseHandler.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/CachedResponseHandler.swift", "line": 58, "symbol": "ResponseCacher.Behavior.doNotCache", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/CachedResponseHandler.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/CachedResponseHandler.swift", "line": 59, "symbol": "ResponseCacher.Behavior.modify(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", "line": 264, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", "line": 265, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", "line": 276, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", "line": 277, "symbol": "EventMonitor.request(_:didParseResponse:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/EventMonitor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/EventMonitor.swift", "line": 642, "symbol": "ClosureEventMonitor.init(queue:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 29, "symbol": "HTTPMethod.connect", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 30, "symbol": "HTTPMethod.delete", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 31, "symbol": "HTTPMethod.get", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 32, "symbol": "HTTPMethod.head", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 33, "symbol": "HTTPMethod.options", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 34, "symbol": "HTTPMethod.patch", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 35, "symbol": "HTTPMethod.post", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 36, "symbol": "HTTPMethod.put", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/HTTPMethod.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/HTTPMethod.swift", "line": 37, "symbol": "HTTPMethod.trace", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 43, "symbol": "NetworkReachabilityManager.NetworkReachabilityStatus.unknown", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 44, "symbol": "NetworkReachabilityManager.NetworkReachabilityStatus.notReachable", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 45, "symbol": "NetworkReachabilityManager.NetworkReachabilityStatus.reachable(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 53, "symbol": "NetworkReachabilityManager.ConnectionType.ethernetOrWiFi", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 54, "symbol": "NetworkReachabilityManager.ConnectionType.wwan", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 84, "symbol": "NetworkReachabilityManager.flags", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 95, "symbol": "NetworkReachabilityManager.previousFlags", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/NetworkReachabilityManager.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/NetworkReachabilityManager.swift", "line": 136, "symbol": "NetworkReachabilityManager.deinit", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", "line": 71, "symbol": "URLEncoding.Destination.httpBody", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", "line": 71, "symbol": "URLEncoding.Destination.methodDependent", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", "line": 71, "symbol": "URLEncoding.Destination.queryString", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", "line": 88, "symbol": "URLEncoding.ArrayEncoding.brackets", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", "line": 88, "symbol": "URLEncoding.ArrayEncoding.noBrackets", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", "line": 105, "symbol": "URLEncoding.BoolEncoding.literal", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ParameterEncoding.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ParameterEncoding.swift", "line": 105, "symbol": "URLEncoding.BoolEncoding.numeric", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RedirectHandler.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RedirectHandler.swift", "line": 58, "symbol": "Redirector.Behavior.follow", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RedirectHandler.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RedirectHandler.swift", "line": 59, "symbol": "Redirector.Behavior.doNotFollow", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RedirectHandler.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RedirectHandler.swift", "line": 60, "symbol": "Redirector.Behavior.modify(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", "line": null, "symbol": "UploadRequest.Uploadable", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 42, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 44, "symbol": "Request.State.cancelled", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 42, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 44, + "symbol": "Request.State.finished", + "symbol_kind": "source.lang.swift.decl.enumelement", + "warning": "undocumented" + }, + { + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 44, "symbol": "Request.State.initialized", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 42, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 44, "symbol": "Request.State.resumed", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 42, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 44, "symbol": "Request.State.suspended", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 143, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 151, "symbol": "Request.redirectHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 150, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 158, "symbol": "Request.cachedResponseHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 723, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 784, "symbol": "RequestDelegate.sessionConfiguration", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 725, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 786, "symbol": "RequestDelegate.retryResult(for:dueTo:completion:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 726, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 787, "symbol": "RequestDelegate.retryRequest(_:withDelay:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 728, - "symbol": "RequestDelegate.cancelRequest(_:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 729, - "symbol": "RequestDelegate.cancelDownloadRequest(_:byProducingResumeData:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 730, - "symbol": "RequestDelegate.suspendRequest(_:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 731, - "symbol": "RequestDelegate.resumeRequest(_:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 738, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 794, "symbol": "DataRequest", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 739, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 795, "symbol": "DataRequest.convertible", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 742, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 798, "symbol": "DataRequest.data", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 821, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 877, "symbol": "DownloadRequest", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 878, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 934, "symbol": "DownloadRequest.Downloadable", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 879, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 935, "symbol": "DownloadRequest.Downloadable.request(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 880, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 936, "symbol": "DownloadRequest.Downloadable.resumeData(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 884, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 940, "symbol": "DownloadRequest.downloadable", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 896, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 952, "symbol": "DownloadRequest.resumeData", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 897, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 953, "symbol": "DownloadRequest.fileURL", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 947, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1003, "symbol": "DownloadRequest.task(forResumeData:using:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 995, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1059, "symbol": "UploadRequest", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 996, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1060, "symbol": "UploadRequest.Uploadable", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 997, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1061, "symbol": "UploadRequest.Uploadable.data(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 998, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1062, "symbol": "UploadRequest.Uploadable.file(_:shouldRemove:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 999, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1063, "symbol": "UploadRequest.Uploadable.stream(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 1004, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1068, "symbol": "UploadRequest.upload", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 1008, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1072, "symbol": "UploadRequest.uploadable", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 1082, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1146, "symbol": "UploadableConvertible", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 1083, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1147, "symbol": "UploadableConvertible.createUploadable()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 1087, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1151, "symbol": "UploadRequest.Uploadable.createUploadable()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Request.swift", - "line": 1092, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Request.swift", + "line": 1156, "symbol": "UploadConvertible", "symbol_kind": "source.lang.swift.decl.protocol", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 40, "symbol": "RetryResult", "symbol_kind": "source.lang.swift.decl.enum", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 41, "symbol": "RetryResult.retry", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 42, "symbol": "RetryResult.retryWithDelay(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 43, "symbol": "RetryResult.doNotRetry", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 44, "symbol": "RetryResult.doNotRetryWithError(_:)", "symbol_kind": "source.lang.swift.decl.enumelement", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 104, "symbol": "AdaptHandler", "symbol_kind": "source.lang.swift.decl.typealias", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 105, "symbol": "RetryHandler", "symbol_kind": "source.lang.swift.decl.typealias", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 109, "symbol": "Adapter", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 112, "symbol": "Adapter.init(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 123, "symbol": "Retrier", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 126, "symbol": "Retrier.init(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 142, "symbol": "Interceptor", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 143, "symbol": "Interceptor.adapters", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 144, "symbol": "Interceptor.retriers", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 146, "symbol": "Interceptor.init(adaptHandler:retryHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 151, "symbol": "Interceptor.init(adapter:retrier:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/RequestInterceptor.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/RequestInterceptor.swift", "line": 156, "symbol": "Interceptor.init(adapters:retriers:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 49, "symbol": "ResponseSerializer.emptyRequestMethods", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 50, "symbol": "ResponseSerializer.emptyResponseCodes", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 54, "symbol": "ResponseSerializer.defaultEmptyRequestMethods", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 55, "symbol": "ResponseSerializer.defaultEmptyResponseCodes", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 57, "symbol": "ResponseSerializer.emptyRequestMethods", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 58, "symbol": "ResponseSerializer.emptyResponseCodes", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 60, "symbol": "ResponseSerializer.requestAllowsEmptyResponseData(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 66, "symbol": "ResponseSerializer.responseAllowsEmptyResponseData(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", "line": 71, "symbol": "ResponseSerializer.emptyResponseAllowed(forRequest:response:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", - "line": 569, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "line": 573, "symbol": "EmptyResponse.emptyValue()", "symbol_kind": "source.lang.swift.decl.function.method.static", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", - "line": 574, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "line": 578, "symbol": "Empty.value", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ResponseSerialization.swift", - "line": 578, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ResponseSerialization.swift", + "line": 582, "symbol": "Empty.emptyValue()", "symbol_kind": "source.lang.swift.decl.function.method.static", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/ServerTrustEvaluation.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/ServerTrustEvaluation.swift", "line": 332, "symbol": "DisabledEvaluator.init()", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": null, "symbol": "Session", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": null, "symbol": "Session", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 27, "symbol": "Session", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 28, "symbol": "Session.default", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 30, "symbol": "Session.delegate", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 31, "symbol": "Session.rootQueue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 32, "symbol": "Session.requestQueue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 33, "symbol": "Session.serializationQueue", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 34, "symbol": "Session.interceptor", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 35, "symbol": "Session.serverTrustManager", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 36, "symbol": "Session.redirectHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 37, "symbol": "Session.cachedResponseHandler", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 39, "symbol": "Session.session", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 40, "symbol": "Session.eventMonitor", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 41, "symbol": "Session.defaultEventMonitors", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 44, "symbol": "Session.startRequestsImmediately", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 46, "symbol": "Session.init(session:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 75, "symbol": "Session.init(configuration:delegate:rootQueue:startRequestsImmediately:requestQueue:serializationQueue:interceptor:serverTrustManager:redirectHandler:cachedResponseHandler:eventMonitors:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 102, "symbol": "Session.deinit", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 122, "symbol": "Session.request(_:method:parameters:encoding:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 151, "symbol": "Session.request(_:method:parameters:encoder:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 166, "symbol": "Session.request(_:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 181, "symbol": "Session.download(_:method:parameters:encoding:headers:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 197, "symbol": "Session.download(_:method:parameters:encoder:headers:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 213, "symbol": "Session.download(_:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 229, "symbol": "Session.download(resumingWith:interceptor:to:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 270, "symbol": "Session.upload(_:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 280, "symbol": "Session.upload(_:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 286, "symbol": "Session.upload(_:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 296, "symbol": "Session.upload(_:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 302, "symbol": "Session.upload(_:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 312, "symbol": "Session.upload(_:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 318, "symbol": "Session.upload(multipartFormData:usingThreshold:fileManager:to:method:headers:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", "line": 336, "symbol": "Session.upload(multipartFormData:usingThreshold:with:interceptor:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 518, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 523, "symbol": "Session.sessionConfiguration", "symbol_kind": "source.lang.swift.decl.var.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 522, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 527, "symbol": "Session.retryResult(for:dueTo:completion:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 538, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 543, "symbol": "Session.retryRequest(_:withDelay:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 555, - "symbol": "Session.cancelRequest(_:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 569, - "symbol": "Session.cancelDownloadRequest(_:byProducingResumeData:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 587, - "symbol": "Session.suspendRequest(_:)", - "symbol_kind": "source.lang.swift.decl.function.method.instance", - "warning": "undocumented" - }, - { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 600, - "symbol": "Session.resumeRequest(_:)", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 564, + "symbol": "Session.request(for:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 617, - "symbol": "Session.request(for:)", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 568, + "symbol": "Session.didGatherMetricsForTask(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 621, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 572, "symbol": "Session.didCompleteTask(_:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 625, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 576, "symbol": "Session.credential(for:in:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/Session.swift", - "line": 630, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/Session.swift", + "line": 581, "symbol": "Session.cancelRequestsForSessionInvalidation(with:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", "line": null, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.extension", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 38, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 39, "symbol": "SessionDelegate", "symbol_kind": "source.lang.swift.decl.class", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 44, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 45, "symbol": "SessionDelegate.init(fileManager:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 50, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 51, "symbol": "SessionDelegate.urlSession(_:didBecomeInvalidWithError:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 61, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 62, "symbol": "SessionDelegate.urlSession(_:task:didReceive:completionHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 120, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 121, "symbol": "SessionDelegate.urlSession(_:task:didSendBodyData:totalBytesSent:totalBytesExpectedToSend:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 135, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 136, "symbol": "SessionDelegate.urlSession(_:task:needNewBodyStream:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 147, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 148, "symbol": "SessionDelegate.urlSession(_:task:willPerformHTTPRedirection:newRequest:completionHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 161, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 162, "symbol": "SessionDelegate.urlSession(_:task:didFinishCollecting:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 167, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 170, "symbol": "SessionDelegate.urlSession(_:task:didCompleteWithError:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 176, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 179, "symbol": "SessionDelegate.urlSession(_:taskIsWaitingForConnectivity:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 182, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 185, "symbol": "SessionDelegate.urlSession(_:dataTask:didReceive:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 192, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 195, "symbol": "SessionDelegate.urlSession(_:dataTask:willCacheResponse:completionHandler:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 207, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 210, "symbol": "SessionDelegate.urlSession(_:downloadTask:didResumeAtOffset:expectedTotalBytes:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 224, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 227, "symbol": "SessionDelegate.urlSession(_:downloadTask:didWriteData:totalBytesWritten:totalBytesExpectedToWrite:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/SessionDelegate.swift", - "line": 243, + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/SessionDelegate.swift", + "line": 246, "symbol": "SessionDelegate.urlSession(_:downloadTask:didFinishDownloadingTo:)", "symbol_kind": "source.lang.swift.decl.function.method.instance", "warning": "undocumented" }, { - "file": "/Users/jshier/Desktop/Code/Alamofire/Source/URLSessionConfiguration+Alamofire.swift", + "file": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire/Source/URLSessionConfiguration+Alamofire.swift", "line": 29, "symbol": "AlamofireExtension.default", "symbol_kind": "source.lang.swift.decl.var.static", "warning": "undocumented" } ], - "source_directory": "/Users/jshier/Desktop/Code/Alamofire" + "source_directory": "/Users/cnoon/Programming/GitHub/Alamofire/Alamofire" } \ No newline at end of file