| | |
| | | |
| | | - (instancetype)init; |
| | | |
| | | /** |
| | | The string encoding used to serialize data received from the server, when no string encoding is specified by the response. `NSUTF8StringEncoding` by default. |
| | | */ |
| | | @property (nonatomic, assign) NSStringEncoding stringEncoding; |
| | | @property (nonatomic, assign) NSStringEncoding stringEncoding DEPRECATED_MSG_ATTRIBUTE("The string encoding is never used. AFHTTPResponseSerializer only validates status codes and content types but does not try to decode the received data in any way."); |
| | | |
| | | /** |
| | | Creates and returns a serializer with default configuration. |
| | |
| | | - `application/json` |
| | | - `text/json` |
| | | - `text/javascript` |
| | | |
| | | In RFC 7159 - Section 8.1, it states that JSON text is required to be encoded in UTF-8, UTF-16, or UTF-32, and the default encoding is UTF-8. NSJSONSerialization provides support for all the encodings listed in the specification, and recommends UTF-8 for efficiency. Using an unsupported encoding will result in serialization error. See the `NSJSONSerialization` documentation for more details. |
| | | */ |
| | | @interface AFJSONResponseSerializer : AFHTTPResponseSerializer |
| | | |
| | |
| | | - (instancetype)init; |
| | | |
| | | /** |
| | | Input and output options specifically intended for `NSXMLDocument` objects. For possible values, see the `NSJSONSerialization` documentation section "NSJSONReadingOptions". `0` by default. |
| | | Input and output options specifically intended for `NSXMLDocument` objects. For possible values, see the `NSXMLDocument` documentation section "Input and Output Options". `0` by default. |
| | | */ |
| | | @property (nonatomic, assign) NSUInteger options; |
| | | |