org.rococoa.cocoa.foundation.categories
Interface NSMutableHTTPURLRequest
- All Superinterfaces:
- ObjCObject
public interface NSMutableHTTPURLRequest
- extends ObjCObject
setHTTPMethod
void setHTTPMethod(NSString method)
- Parameters:
method
- the new HTTP request method for the receiver.
Original signature : -(void)setHTTPMethod:(NSString*)
from NSMutableHTTPURLRequest native declaration : NSURLRequest.h:418
setAllHTTPHeaderFields
void setAllHTTPHeaderFields(NSDictionary headerFields)
- Parameters:
headerFields
- a dictionary containing HTTP header fields.
Original signature : -(void)setAllHTTPHeaderFields:(NSDictionary*)
from NSMutableHTTPURLRequest native declaration : NSURLRequest.h:433
setValue_forHTTPHeaderField
void setValue_forHTTPHeaderField(NSString value,
NSString field)
- Parameters:
value
- the header field value.
field
- the header field name (case-insensitive).
Original signature : -(void)setValue:(NSString*) forHTTPHeaderField:(NSString*)
from NSMutableHTTPURLRequest native declaration : NSURLRequest.h:445
addValue_forHTTPHeaderField
void addValue_forHTTPHeaderField(NSString value,
NSString field)
- Parameters:
value
- the header field value.
field
- the header field name (case-insensitive).
Original signature : -(void)addValue:(NSString*) forHTTPHeaderField:(NSString*)
from NSMutableHTTPURLRequest native declaration : NSURLRequest.h:461
setHTTPBody
void setHTTPBody(NSData data)
- Parameters:
data
- the new request body data for the receiver.
Original signature : -(void)setHTTPBody:(NSData*)
from NSMutableHTTPURLRequest native declaration : NSURLRequest.h:470
setHTTPBodyStream
void setHTTPBodyStream(NSInputStream inputStream)
- Parameters:
inputStream
- the new input stream for use by the receiver
Original signature : -(void)setHTTPBodyStream:(NSInputStream*)
from NSMutableHTTPURLRequest native declaration : NSURLRequest.h:483
setHTTPShouldHandleCookies
void setHTTPShouldHandleCookies(boolean should)
- Parameters:
should
- YES if cookies should be sent with and set for this request;
otherwise NO.
Copyright © 2009. All Rights Reserved.