Provides loading of a URL request. More...
#import <CPURLConnection.h>
Class Methods | |
(CPURLConnection) | + connectionWithRequest:delegate: |
(CPURLConnection) | + sendAsynchronousRequest:queue:completionHandler: |
(CPData) | + sendSynchronousRequest:returningResponse: |
(CPData) | + sendSynchronousRequest:returningResponse:error: |
(void) | + setClassDelegate: |
![]() | |
(BOOL) | + accessInstanceVariablesDirectly |
(id) | + alloc |
(id) | + allocWithCoder: |
(BOOL) | + automaticallyNotifiesObserversForKey: |
(void) | + cancelPreviousPerformRequestsWithTarget: |
(void) | + cancelPreviousPerformRequestsWithTarget:selector:object: |
(Class) | + class |
(BOOL) | + conformsToProtocol: |
(void) | + exposeBinding: |
(void) | + initialize |
(IMP) | + instanceMethodForSelector: |
(BOOL) | + instancesRespondToSelector: |
(BOOL) | + isBindingExclusive: |
(BOOL) | + isSubclassOfClass: |
(CPSet) | + keyPathsForValuesAffectingValueForKey: |
(void) | + load |
(id) | + new |
(void) | + object:performSelector:withObject:afterDelay:inModes: |
(void) | + setVersion: |
(Class) | + superclass |
(int) | + version |
Provides loading of a URL request.
An interface to downloading content at a specified URL. Using one of the class methods, you can obtain the data.
-(void)connection:(CPURLConnection)connection didFailWithError:(id)error; Called when the connection encounters an error.
connection | the connection that had an error |
error | the error, which is either a javascript DOMException or an http status code (javascript number/CPNumber) |
-(void)connection:(CPURLConnection)connection didReceiveResponse:(CPHTTPURLResponse)response; Called when the connection receives a response.
connection | the connection that received a response |
response | the received response |
-(void)connection:(CPURLConnection)connection didReceiveData:(CPString)data; Called when the connection has received data.
connection | the connection that received data |
data | the received data |
-(void)connectionDidFinishLoading:(CPURLConnection)connection; Called when the URL has finished loading.
connection | the connection that finished loading |
Class Delegate Method:
-(void)connectionDidReceiveAuthenticationChallenge:(id)connection The class delegate allows you to set global behavior for when authentication challenges (401 status codes) are returned.
The recommended way to handle this method is to store a reference to the connection, and then use whatever method you have to authenticate yourself. Once you've authenticated yourself, you should cancel and then start the connection:
[connection cancel]; [connection start];
@param connection the connection that received the authentication challenge.
Definition at line 2 of file CPURLConnection.h.
|
implementation |
Definition at line 276 of file CPURLConnection.j.
|
implementation |
Definition at line 155 of file CPURLConnection.j.
|
implementation |
Synthesized accessor method.
Provided by category CPURLConnection(CPSynthesizedAccessors).
Definition at line 453 of file CPURLConnection.j.
|
implementation |
Definition at line 231 of file CPURLConnection.j.
|
implementation |
Definition at line 223 of file CPURLConnection.j.
|
implementation |
Definition at line 167 of file CPURLConnection.j.
|
implementation |
Definition at line 293 of file CPURLConnection.j.
|
implementation |
Synthesized accessor method.
Provided by category CPURLConnection(CPSynthesizedAccessors).
Definition at line 461 of file CPURLConnection.j.
|
implementation |
Synthesized accessor method.
Provided by category CPURLConnection(CPSynthesizedAccessors).
Definition at line 445 of file CPURLConnection.j.
|
implementation |
Definition at line 144 of file CPURLConnection.j.
|
implementation |
Definition at line 107 of file CPURLConnection.j.
|
implementation |
Provided by category CPURLConnection(Deprecated).
Definition at line 424 of file CPURLConnection.j.
|
implementation |
Definition at line 95 of file CPURLConnection.j.
|
implementation |
Definition at line 239 of file CPURLConnection.j.