Adding documentation to constants in AFHTTPRequestOperation
This commit is contained in:
parent
69c48f85bb
commit
abc04440f7
1 changed files with 12 additions and 1 deletions
|
|
@ -22,10 +22,21 @@
|
|||
|
||||
#import <Foundation/Foundation.h>
|
||||
|
||||
// Error codes for AFNetworkingErrorDomain correspond to codes in NSURLErrorDomain
|
||||
/**
|
||||
Indicates an error occured in AFNetworking.
|
||||
|
||||
@discussion Error codes for AFNetworkingErrorDomain correspond to codes in NSURLErrorDomain.
|
||||
*/
|
||||
extern NSString * const AFNetworkingErrorDomain;
|
||||
|
||||
/**
|
||||
Posted when an operation begins executing.
|
||||
*/
|
||||
extern NSString * const AFHTTPOperationDidStartNotification;
|
||||
|
||||
/**
|
||||
Posted when an operation finishes.
|
||||
*/
|
||||
extern NSString * const AFHTTPOperationDidFinishNotification;
|
||||
|
||||
/**
|
||||
|
|
|
|||
Loading…
Add table
Reference in a new issue