diff --git a/AFNetworking/AFHTTPClient.h b/AFNetworking/AFHTTPClient.h index da2e086..d3ac19f 100644 --- a/AFNetworking/AFHTTPClient.h +++ b/AFNetworking/AFHTTPClient.h @@ -309,7 +309,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete @param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request. @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred. - @see enqueueHTTPOperationWithRequest:success:failure + @see HTTPRequestOperationWithRequest:success:failure */ - (void)getPath:(NSString *)path parameters:(NSDictionary *)parameters @@ -324,7 +324,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete @param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request. @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred. - @see enqueueHTTPOperationWithRequest:success:failure + @see HTTPRequestOperationWithRequest:success:failure */ - (void)postPath:(NSString *)path parameters:(NSDictionary *)parameters @@ -339,7 +339,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete @param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request. @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred. - @see enqueueHTTPOperationWithRequest:success:failure + @see HTTPRequestOperationWithRequest:success:failure */ - (void)putPath:(NSString *)path parameters:(NSDictionary *)parameters @@ -354,7 +354,7 @@ extern NSString * AFQueryStringFromParametersWithEncoding(NSDictionary *paramete @param success A block object to be executed when the request operation finishes successfully, with a status code in the 2xx range, and with an acceptable content type (e.g. `application/json`). This block has no return value and takes a single argument, which is the response object created from the response data of request. @param failure A block object to be executed when the request operation finishes unsuccessfully, or that finishes successfully, but encountered an error while parsing the resonse data as JSON. This block has no return value and takes a single argument, which is the `NSError` object describing the network or parsing error that occurred. - @see enqueueHTTPOperationWithRequest:success:failure + @see HTTPRequestOperationWithRequest:success:failure */ - (void)deletePath:(NSString *)path parameters:(NSDictionary *)parameters