MonobjcMonobjc Documented Class Library
WebViewResourceDidReceiveContentLengthFromDataSource Method (sender, identifier, length, dataSource)
NamespacesMonobjc.WebKitIWebResourceLoadDelegateWebViewResourceDidReceiveContentLengthFromDataSource(WebView, Id, NSUInteger, WebDataSource)

Invoked when some of the data for a given resource has arrived.

Original signature is '- (void)webView:(WebView *)sender resource:(id)identifier didReceiveContentLength:(NSUInteger)length fromDataSource:(WebDataSource *)dataSource'

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

Declaration Syntax
C#Visual BasicVisual C++
void WebViewResourceDidReceiveContentLengthFromDataSource(
	WebView sender,
	Id identifier,
	NSUInteger length,
	WebDataSource dataSource
)
Sub WebViewResourceDidReceiveContentLengthFromDataSource ( _
	sender As WebView, _
	identifier As Id, _
	length As NSUInteger, _
	dataSource As WebDataSource _
)
void WebViewResourceDidReceiveContentLengthFromDataSource(
	WebView^ sender, 
	Id^ identifier, 
	NSUInteger length, 
	WebDataSource^ dataSource
)
Parameters
sender (WebView)
The web view that sent this message.
identifier (Id)
An identifier object used to track the resource being loaded by dataSource.
length (NSUInteger)
The amount of incremental data received for this resource—the amount of data loaded since the last time this method was invoked for this resource, not the total amount received for this resource.
dataSource (WebDataSource)
The data source for this web view.
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.WebKit (Module: Monobjc.WebKit)