C# 클래스 Accord.CommunicationBufferEventArgs

Event arguments holding a buffer sent or received during some communication process.
상속: System.EventArgs
파일 보기 프로젝트 열기: accord-net/framework

공개 메소드들

메소드 설명
CommunicationBufferEventArgs ( byte message ) : System

Initializes a new instance of the CommunicationBufferEventArgs class.

CommunicationBufferEventArgs ( byte buffer, int index, int length ) : System

Initializes a new instance of the CommunicationBufferEventArgs class.

GetMessage ( ) : byte[]

Get the transfered message.

GetMessageString ( ) : string

Get the transferred message as string.

메소드 상세

CommunicationBufferEventArgs() 공개 메소드

Initializes a new instance of the CommunicationBufferEventArgs class.
public CommunicationBufferEventArgs ( byte message ) : System
message byte Message being transfered during communication process.
리턴 System

CommunicationBufferEventArgs() 공개 메소드

Initializes a new instance of the CommunicationBufferEventArgs class.
public CommunicationBufferEventArgs ( byte buffer, int index, int length ) : System
buffer byte Buffer containing the message being transferred during communication process.
index int Starting index of the message within the buffer.
length int Length of the message within the buffer.
리턴 System

GetMessage() 공개 메소드

Get the transfered message.
public GetMessage ( ) : byte[]
리턴 byte[]

GetMessageString() 공개 메소드

Get the transferred message as string.
public GetMessageString ( ) : string
리턴 string