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

Sent as a download object receives data incrementally.

Original signature is '- (void)download:(NSURLDownload *)download didReceiveDataOfLength:(NSUInteger)length'

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

Declaration Syntax
C#Visual BasicVisual C++
public delegate void DownloadDidReceiveDataOfLengthEventHandler(
	NSURLDownload download,
	NSUInteger length
)
Public Delegate Sub DownloadDidReceiveDataOfLengthEventHandler ( _
	download As NSURLDownload, _
	length As NSUInteger _
)
public delegate void DownloadDidReceiveDataOfLengthEventHandler(
	NSURLDownload^ download, 
	NSUInteger length
)
Parameters
download (NSURLDownload)
The URL download object sending the message.
length (NSUInteger)
The amount of data received in this increment of the download, measured 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)