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

Sent when a download object has received a response from the server after attempting to resume a download.

Original signature is '- (void)download:(NSURLDownload *)download willResumeWithResponse:(NSURLResponse *)response fromByte:(long long)startingByte'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void DownloadWillResumeWithResponseFromByteEventHandler(
	NSURLDownload download,
	NSURLResponse response,
	long startingByte
)
Public Delegate Sub DownloadWillResumeWithResponseFromByteEventHandler ( _
	download As NSURLDownload, _
	response As NSURLResponse, _
	startingByte As Long _
)
public delegate void DownloadWillResumeWithResponseFromByteEventHandler(
	NSURLDownload^ download, 
	NSURLResponse^ response, 
	long long startingByte
)
Parameters
download (NSURLDownload)
The URL download object sending the message.
response (NSURLResponse)
The URL response received from the server in response to an attempt to resume a download.
startingByte (Int64)
The location of the start of the resumed data, in bytes.
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)