单军华
2016-12-30 e05aab7eeb55ede6fe6226e41c65b6bfad65957e
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
//
//  PingppURLResponse.h
//  Pingpp
//
//  Created by afon on 15/8/29.
//  Copyright (c) 2015年 PingPluspPlus. All rights reserved.
//
 
#import <Foundation/Foundation.h>
 
NS_ASSUME_NONNULL_BEGIN
 
@interface PingppURLResponse : NSObject
 
/**
 The last response received by the operation's connection.
 */
@property (readonly, nonatomic, strong, nullable) NSURLResponse *response;
 
/**
 The data received during the request.
 */
@property (readonly, nonatomic, strong, nullable) NSData *responseData;
 
/**
 The string representation of the response data.
 */
@property (readonly, nonatomic, copy, nullable) NSString *responseString;
 
/**
 The string encoding of the response.
 */
@property (readonly, nonatomic, assign) NSStringEncoding responseStringEncoding;
 
@end
 
NS_ASSUME_NONNULL_END