-
Notifications
You must be signed in to change notification settings - Fork 75
/
ASIFormDataRequest.h
47 lines (40 loc) · 1.59 KB
/
ASIFormDataRequest.h
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
38
39
40
41
42
43
44
45
46
//
// Generated by class-dump 3.5 (64 bit).
//
// class-dump is Copyright (C) 1997-1998, 2000-2001, 2004-2013 by Steve Nygard.
//
#import "ASIHTTPRequest.h"
#import "NSCopying.h"
@class NSMutableArray;
@interface ASIFormDataRequest : ASIHTTPRequest <NSCopying>
{
NSMutableArray *postData;
NSMutableArray *fileData;
unsigned long long postFormat;
unsigned long long stringEncoding;
}
+ (id)requestWithURL:(id)arg1;
@property unsigned long long stringEncoding; // @synthesize stringEncoding;
@property unsigned long long postFormat; // @synthesize postFormat;
@property(retain) NSMutableArray *fileData; // @synthesize fileData;
@property(retain) NSMutableArray *postData; // @synthesize postData;
- (id)copyWithZone:(struct _NSZone *)arg1;
- (void)appendPostString:(id)arg1;
- (void)buildURLEncodedPostBody;
- (void)buildMultipartFormDataPostBody;
- (_Bool)isHeaderContainsContentType;
- (void)buildPostBody;
- (void)setData:(id)arg1 withFileName:(id)arg2 andContentType:(id)arg3 forKey:(id)arg4;
- (void)setData:(id)arg1 forKey:(id)arg2;
- (void)addData:(id)arg1 withFileName:(id)arg2 andContentType:(id)arg3 forKey:(id)arg4;
- (void)addData:(id)arg1 forKey:(id)arg2;
- (void)setFile:(id)arg1 withFileName:(id)arg2 andContentType:(id)arg3 forKey:(id)arg4;
- (void)setFile:(id)arg1 forKey:(id)arg2;
- (void)addFile:(id)arg1 withFileName:(id)arg2 andContentType:(id)arg3 forKey:(id)arg4;
- (void)addFile:(id)arg1 forKey:(id)arg2;
- (void)setPostValue:(id)arg1 forKey:(id)arg2;
- (void)addPostValue:(id)arg1 forKey:(id)arg2;
- (void)dealloc;
- (id)initWithURL:(id)arg1;
- (id)encodeURL:(id)arg1;
@end