AWSNetworkingRequest
Objective-C
@interface AWSNetworkingRequest : AWSNetworkingConfiguration
@property (nonatomic, strong) NSDictionary *parameters;
@property (nonatomic, strong) NSURL *uploadingFileURL;
@property (nonatomic, strong) NSURL *downloadingFileURL;
@property (nonatomic, assign) BOOL shouldWriteDirectly;
@property (nonatomic, copy) AWSNetworkingUploadProgressBlock uploadProgress;
@property (nonatomic, copy) AWSNetworkingDownloadProgressBlock downloadProgress;
@property (readonly, nonatomic, strong) NSURLSessionTask *task;
@property (readonly, nonatomic, assign, getter = isCancelled) BOOL cancelled;
- (void)assignProperties:(AWSNetworkingConfiguration *)configuration;
- (void)cancel;
- (void)pause;
@end
Swift
class AWSNetworkingRequest : AWSNetworkingConfiguration
Undocumented
-
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) NSDictionary *parametersSwift
var parameters: [AnyHashable : Any]! { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) NSURL *uploadingFileURLSwift
var uploadingFileURL: URL! { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, strong) NSURL *downloadingFileURLSwift
var downloadingFileURL: URL! { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic) BOOL shouldWriteDirectlySwift
var shouldWriteDirectly: Bool { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) AWSNetworkingUploadProgressBlock uploadProgressSwift
var uploadProgress: AWSNetworkingUploadProgressBlock! { get set } -
Undocumented
Declaration
Objective-C
@property (nonatomic, copy) AWSNetworkingDownloadProgressBlock downloadProgressSwift
var downloadProgress: AWSNetworkingDownloadProgressBlock! { get set } -
Undocumented
Declaration
Objective-C
@property (readonly, nonatomic, strong) NSURLSessionTask *taskSwift
var task: URLSessionTask! { get } -
Undocumented
Declaration
Objective-C
@property (readonly, nonatomic, getter = isCancelled) BOOL cancelledSwift
var isCancelled: Bool { get } -
Undocumented
Declaration
Objective-C
- (void)assignProperties:(AWSNetworkingConfiguration *)configuration;Swift
func assignProperties(_ configuration: AWSNetworkingConfiguration!) -
Undocumented
Declaration
Objective-C
- (void)cancel;Swift
func cancel() -
Undocumented
Declaration
Objective-C
- (void)pause;Swift
func pause()
View on GitHub
Install in Dash
AWSNetworkingRequest Class Reference