A method identified as deprecated has been superseded and may become unsupported in the future.
Sent periodically by an URL handle when new resource data becomes available. (Deprecated in Mac OS X v10.4 and later. Use NSURLConnection
or NSURLDownload
instead; see URL Loading System.)
- (void)URLHandle:(NSURLHandle *)sender resourceDataDidBecomeAvailable:(NSData *)newBytes
The URL handle sending the message.
The newly available data.
NSURLHandle.h
Sent when the URL handle failed to load resource data for some reason other than being canceled. (Deprecated in Mac OS X v10.4 and later. Use NSURLConnection
or NSURLDownload
instead; see URL Loading System.)
- (void)URLHandle:(NSURLHandle *)sender resourceDidFailLoadingWithReason:(NSString *)reason
The URL handle sending the message.
A human-readable, localized string describing why the load failed.
NSURLHandle.h
Sent when an URL handle begins loading resource data. (Deprecated in Mac OS X v10.4 and later. Use NSURLConnection
or NSURLDownload
instead; see URL Loading System.)
- (void)URLHandleResourceDidBeginLoading:(NSURLHandle *)sender
The URL handle sending the message.
NSURLHandle.h
Sent when an URL handle has canceled loading resource data in response to a programmatic request. (Deprecated in Mac OS X v10.4 and later. Use NSURLConnection
or NSURLDownload
instead; see URL Loading System.)
- (void)URLHandleResourceDidCancelLoading:(NSURLHandle *)sender
The URL handle sending the message.
NSURLHandle.h
Sent when an URL handle finishes loading resource data. (Deprecated in Mac OS X v10.4 and later. Use NSURLConnection
or NSURLDownload
instead; see URL Loading System.)
- (void)URLHandleResourceDidFinishLoading:(NSURLHandle *)sender
The URL handle sending the message.
NSURLHandle.h
© 2006 Apple Computer, Inc. All Rights Reserved. (Last updated: 2006-05-23)