C# 클래스 Monobjc.Foundation.NSMutableData

파일 보기 프로젝트 열기: Monobjc/monobjc

공개 메소드들

메소드 설명
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 +.

메소드 상세

AppendBytesLength() 공개 메소드

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.
리턴 void

NSMutableData() 공개 메소드

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

NSMutableData() 공개 메소드

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

operator() 공개 정적인 메소드

Implements the operator +.
public static operator ( ) : NSMutableData
리턴 NSMutableData