C# 클래스 System.Net.StreamFramer

파일 보기 프로젝트 열기: dotnet/corefx 1 사용 예제들

공개 메소드들

메소드 설명
BeginReadMessage ( AsyncCallback asyncCallback, object stateObject ) : IAsyncResult
BeginWriteMessage ( byte message, AsyncCallback asyncCallback, object stateObject ) : IAsyncResult
EndReadMessage ( IAsyncResult asyncResult ) : byte[]
EndWriteMessage ( IAsyncResult asyncResult ) : void
ReadMessage ( ) : byte[]
StreamFramer ( Stream Transport ) : System.Diagnostics
WriteMessage ( byte message ) : void

비공개 메소드들

메소드 설명
BeginWriteCallback ( IAsyncResult transportResult ) : void
BeginWriteComplete ( IAsyncResult transportResult ) : void
ReadFrameCallback ( IAsyncResult transportResult ) : void
ReadFrameComplete ( IAsyncResult transportResult ) : void

메소드 상세

BeginReadMessage() 공개 메소드

public BeginReadMessage ( AsyncCallback asyncCallback, object stateObject ) : IAsyncResult
asyncCallback AsyncCallback
stateObject object
리턴 IAsyncResult

BeginWriteMessage() 공개 메소드

public BeginWriteMessage ( byte message, AsyncCallback asyncCallback, object stateObject ) : IAsyncResult
message byte
asyncCallback AsyncCallback
stateObject object
리턴 IAsyncResult

EndReadMessage() 공개 메소드

public EndReadMessage ( IAsyncResult asyncResult ) : byte[]
asyncResult IAsyncResult
리턴 byte[]

EndWriteMessage() 공개 메소드

public EndWriteMessage ( IAsyncResult asyncResult ) : void
asyncResult IAsyncResult
리턴 void

ReadMessage() 공개 메소드

public ReadMessage ( ) : byte[]
리턴 byte[]

StreamFramer() 공개 메소드

public StreamFramer ( Stream Transport ) : System.Diagnostics
Transport Stream
리턴 System.Diagnostics

WriteMessage() 공개 메소드

public WriteMessage ( byte message ) : void
message byte
리턴 void