24 lines
698 B
Objective-C
24 lines
698 B
Objective-C
|
|
#import <Foundation/Foundation.h>
|
|
|
|
//-----------------------------------------------------------------
|
|
// interface MultipartMessageHeaderField
|
|
//-----------------------------------------------------------------
|
|
|
|
@interface MultipartMessageHeaderField : NSObject {
|
|
NSString* name;
|
|
NSString* value;
|
|
NSMutableDictionary* params;
|
|
}
|
|
|
|
@property (strong, readonly) NSString* value;
|
|
@property (strong, readonly) NSDictionary* params;
|
|
@property (strong, readonly) NSString* name;
|
|
|
|
//- (id) initWithLine:(NSString*) line;
|
|
//- (id) initWithName:(NSString*) paramName value:(NSString*) paramValue;
|
|
|
|
- (id) initWithData:(NSData*) data contentEncoding:(NSStringEncoding) encoding;
|
|
|
|
@end
|