MonobjcMonobjc Documented Class Library
DidLoadBytesLoadComplete Method (newBytes, done)
NamespacesMonobjc.FoundationNSURLHandleDidLoadBytesLoadComplete(NSData, Boolean)

Appends new data to the receiver’s resource data. (Deprecated in Mac OS X v10.4 and later. Use NSURLConnection or NSURLDownload instead; see URL Loading System Programming Guide.)

Original signature is '- (void)didLoadBytes:(NSData *)newBytes loadComplete:(BOOL)done'

Available in Mac OS X v10.4 and later.

Declaration Syntax
C#Visual BasicVisual C++
[ObsoleteAttribute("Deprecated in Mac OS X v10.4. Use NSURLConnection or NSURLDownload instead; see URL Loading System Programming Guide.")]
public virtual void DidLoadBytesLoadComplete(
	NSData newBytes,
	bool done
)
<ObsoleteAttribute("Deprecated in Mac OS X v10.4. Use NSURLConnection or NSURLDownload instead; see URL Loading System Programming Guide.")> _
Public Overridable Sub DidLoadBytesLoadComplete ( _
	newBytes As NSData, _
	done As Boolean _
)
[ObsoleteAttribute(L"Deprecated in Mac OS X v10.4. Use NSURLConnection or NSURLDownload instead; see URL Loading System Programming Guide.")]
public:
virtual void DidLoadBytesLoadComplete(
	NSData^ newBytes, 
	bool done
)
Parameters
newBytes (NSData)
The newly loaded bytes.
done (Boolean)
YES if newBytes contains the last piece of data for the URL, NO otherwise.
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)