another.im-ios/Monal/Classes/MLHTTPRequest.h
2024-11-18 15:53:52 +01:00

25 lines
782 B
Objective-C

//
// MLHTTPRequest.h
//
//
// Created by Anurodh Pokharel on 9/16/15.
// Copyright © 2015 Anurodh Pokharel. All rights reserved.
//
#import <Foundation/Foundation.h>
#import "MLConstants.h"
#define kGet @"GET"
#define kPost @"POST"
#define kPut @"PUT"
@interface MLHTTPRequest : NSObject <NSURLConnectionDelegate, NSURLConnectionDataDelegate>
/**
Performs a HTTP call with the specified verb (GET, PUT, POST etc) to a url . Completion handler will be called with the result as dictinary or array.
@param postedData optional
*/
+ (void) sendWithVerb:(NSString *) verb path:(NSString *)path headers:(NSDictionary *) headers withArguments:(NSDictionary *) arguments data:(NSData *) postedData andCompletionHandler:(void (^)(NSError *error, id result)) completion;
@end