MonobjcMonobjc Documented Class Library
ConnectionDidReceiveDataMessage Method (connection, data)
NamespacesMonobjc.FoundationNSURLConnection..::..NSURLConnectionDelegateEventDispatcherConnectionDidReceiveDataMessage(NSURLConnection, NSData)

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 void ConnectionDidReceiveDataMessage(
	NSURLConnection connection,
	NSData data
)
Public Sub ConnectionDidReceiveDataMessage ( _
	connection As NSURLConnection, _
	data As NSData _
)
public:
void ConnectionDidReceiveDataMessage(
	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)