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

Sent as the body (message data) of a request is transmitted (such as in an http POST request).

Original signature is '- (void)connection:(NSURLConnection *)connection didSendBodyData:(NSInteger)bytesWritten totalBytesWritten:(NSInteger)totalBytesWritten totalBytesExpectedToWrite:(NSInteger)totalBytesExpectedToWrite'

Available in Mac OS X v10.6 and later.

Declaration Syntax
C#Visual BasicVisual C++
public delegate void ConnectionDidSendBodyDataTotalBytesWrittenTotalBytesExpectedToWriteEventHandler(
	NSURLConnection connection,
	NSInteger bytesWritten,
	NSInteger totalBytesWritten,
	NSInteger totalBytesExpectedToWrite
)
Public Delegate Sub ConnectionDidSendBodyDataTotalBytesWrittenTotalBytesExpectedToWriteEventHandler ( _
	connection As NSURLConnection, _
	bytesWritten As NSInteger, _
	totalBytesWritten As NSInteger, _
	totalBytesExpectedToWrite As NSInteger _
)
public delegate void ConnectionDidSendBodyDataTotalBytesWrittenTotalBytesExpectedToWriteEventHandler(
	NSURLConnection^ connection, 
	NSInteger bytesWritten, 
	NSInteger totalBytesWritten, 
	NSInteger totalBytesExpectedToWrite
)
Parameters
connection (NSURLConnection)
The connection sending the message.
bytesWritten (NSInteger)
The number of bytes written in the latest write.
totalBytesWritten (NSInteger)
The total number of bytes written for this connection.
totalBytesExpectedToWrite (NSInteger)
The number of bytes the connection expects to write.
Version Information
  • Available in Monobjc Bridge: 10.6 (For Mac OS X 10.6 and later)

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