MonobjcMonobjc Documented Class Library
AppendBytesLength Method (bytes, length)
NamespacesMonobjc.FoundationNSMutableDataAppendBytesLength(array<Byte>[]()[][], UInt32)

Appends to the receiver a given number of bytes from a given buffer.

Original signature is '- (void)appendBytes:(const void *)bytes length:(NSUInteger )length'

Available in Mac OS X v10.0 and later.

Declaration Syntax
C#Visual BasicVisual C++
public void AppendBytesLength(
	byte[] bytes,
	uint length
)
Public Sub AppendBytesLength ( _
	bytes As Byte(), _
	length As UInteger _
)
public:
void AppendBytesLength(
	array<unsigned char>^ bytes, 
	unsigned int length
)
Parameters
bytes (array<Byte>[]()[][])
A buffer containing data to append to the receiver's content.
length (UInt32)
The number of bytes from bytes to append.
Return Value
An initialized NSMutableData object capable of holding capacity bytes.
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)