API  1.0.0
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
A mutable key-value pair collection.
Definition: CPDictionary.h:2
An immutable string (collection of characters).
Definition: CPString.h:2
Contains data obtained during a request made with CPURLConnection.
Definition: CPURLRequest.h:2
Definition: CPURL.h:2