C# Class Monobjc.Foundation.NSMutableData

Show file Open project: Monobjc/monobjc

Public Methods

Method Description
AppendBytesLength ( byte bytes, NSUInteger length ) : void

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.

NSMutableData ( byte bytes ) : System

Initializes a new instance of the NSMutableData class.

NSMutableData ( byte bytes, NSUInteger length ) : System

Initializes a new instance of the NSMutableData class.

operator ( ) : NSMutableData

Implements the operator +.

Method Details

AppendBytesLength() public method

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.

public AppendBytesLength ( byte bytes, NSUInteger length ) : void
bytes byte A buffer containing data to append to the receiver's content.
length NSUInteger The number of bytes from bytes to append.
return void

NSMutableData() public method

Initializes a new instance of the NSMutableData class.
public NSMutableData ( byte bytes ) : System
bytes byte The bytes.
return System

NSMutableData() public method

Initializes a new instance of the NSMutableData class.
public NSMutableData ( byte bytes, NSUInteger length ) : System
bytes byte The bytes.
length NSUInteger The length.
return System

operator() public static method

Implements the operator +.
public static operator ( ) : NSMutableData
return NSMutableData