C# 클래스 logv.http.AsyncStreamCopier

Copies data from one stream into another using the async pattern. Copies are done in 4k blocks.
파일 보기 프로젝트 열기: coolya/logv.http 1 사용 예제들

공개 메소드들

메소드 설명
AsyncStreamCopier ( Stream input, Stream output ) : System

Initializes a new instance of the AsyncStreamCopier class.

Copy ( ) : void

Starts the copying

비공개 메소드들

메소드 설명
GetData ( ) : void
RaiseComplete ( ) : void
ReadComplete ( IAsyncResult result ) : void

메소드 상세

AsyncStreamCopier() 공개 메소드

Initializes a new instance of the AsyncStreamCopier class.
public AsyncStreamCopier ( Stream input, Stream output ) : System
input Stream The input.
output Stream The output.
리턴 System

Copy() 공개 메소드

Starts the copying
public Copy ( ) : void
리턴 void