MonobjcMonobjc Documented Class Library
NSURLDownload..::..DownloadDidReceiveResponseEventHandler Delegate
NamespacesMonobjc.FoundationNSURLDownloadNSURLDownload..::..DownloadDidReceiveResponseEventHandler

Sent when a download object has received sufficient load data to construct the NSURLResponse object for the download.

Original signature is '- (void)download:(NSURLDownload *)download didReceiveResponse:(NSURLResponse *)response'

Available in Mac OS X v10.2 with Safari 1.0 installed and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void DownloadDidReceiveResponseEventHandler(
	NSURLDownload download,
	NSURLResponse response
)
Public Delegate Sub DownloadDidReceiveResponseEventHandler ( _
	download As NSURLDownload, _
	response As NSURLResponse _
)
public delegate void DownloadDidReceiveResponseEventHandler(
	NSURLDownload^ download, 
	NSURLResponse^ response
)
Parameters
download (NSURLDownload)
The URL download object sending the message.
response (NSURLResponse)
The URL response object received as part of the download. response is immutable and will not be modified after this method is called.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later), 10.5 (For Mac OS X 10.5 and later)

Assembly: Monobjc.Foundation (Module: Monobjc.Foundation)