MonobjcMonobjc Documented Class Library
NSURLConnection..::..ConnectionDidReceiveDataEventHandler Delegate
NamespacesMonobjc.FoundationNSURLConnectionNSURLConnection..::..ConnectionDidReceiveDataEventHandler

Sent as a connection loads data incrementally.

Original signature is '- (void)connection:(NSURLConnection *)connection didReceiveData:(NSData *)data'

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

Declaration Syntax
C#Visual BasicVisual C++
public delegate void ConnectionDidReceiveDataEventHandler(
	NSURLConnection connection,
	NSData data
)
Public Delegate Sub ConnectionDidReceiveDataEventHandler ( _
	connection As NSURLConnection, _
	data As NSData _
)
public delegate void ConnectionDidReceiveDataEventHandler(
	NSURLConnection^ connection, 
	NSData^ data
)
Parameters
connection (NSURLConnection)
The connection sending the message.
data (NSData)
The newly available data. The delegate should concatenate the contents of each data object delivered to build up the complete data for a URL load.
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)