Cappuccino  1.0.0
All Classes Files Functions Variables Typedefs Macros Groups Pages
CPURLRequest.h
Go to the documentation of this file.
1 
2 @interface CPURLRequest : CPObject
3 {
4  CPURL _URL // @accessors(property=URL);
5 
6  // FIXME: this should be CPData
7  CPString _HTTPBody // @accessors(property=HTTPBody);
8  CPString _HTTPMethod // @accessors(property=HTTPMethod);
9  BOOL _withCredentials // @accessors(property=withCredentials);
10 
11  CPDictionary _HTTPHeaderFields // @accessors(readonly, getter=allHTTPHeaderFields);
12  CPTimeInterval _timeoutInterval // @accessors(readonly, getter=timeoutInterval);
13  CPURLRequestCachePolicy _cachePolicy // @accessors(readonly, getter=cachePolicy);
14 }
15 @end