C# 클래스 PRI.ProductivityExtensions.GZipStreamExtensions.GZipStreamable

Class that contains extension methods that extend GZipStream
파일 보기 프로젝트 열기: peteraritchie/ProductivityExtensions

공개 메소드들

메소드 설명
BeginRead ( this gzipstream, Byte array, AsyncCallback asyncCallback ) : IAsyncResult

Extends BeginRead so that buffer offset of 0 and call to Array.Length are not needed. gzipstream.BeginRead(array, asyncCallback);

BeginRead ( this gzipstream, Byte array, Int32 offset, Int32 count, AsyncCallback asyncCallback ) : IAsyncResult

Extends BeginRead so that when a state object is not needed, null does not need to be passed. gzipstream.BeginRead(array, offset, count, asyncCallback);

BeginWrite ( this gzipstream, Byte array, AsyncCallback asyncCallback ) : IAsyncResult

Extends BeginWrite so that buffer offset of 0 and call to Array.Length are not needed. gzipstream.BeginWrite(array, asyncCallback);

BeginWrite ( this gzipstream, Byte array, Int32 offset, Int32 count, AsyncCallback asyncCallback ) : IAsyncResult

Extends BeginWrite so that when a state object is not needed, null does not need to be passed. gzipstream.BeginWrite(array, offset, count, asyncCallback);

메소드 상세

BeginRead() 공개 정적인 메소드

Extends BeginRead so that buffer offset of 0 and call to Array.Length are not needed. gzipstream.BeginRead(array, asyncCallback);
public static BeginRead ( this gzipstream, Byte array, AsyncCallback asyncCallback ) : IAsyncResult
gzipstream this
array Byte
asyncCallback AsyncCallback
리턴 IAsyncResult

BeginRead() 공개 정적인 메소드

Extends BeginRead so that when a state object is not needed, null does not need to be passed. gzipstream.BeginRead(array, offset, count, asyncCallback);
public static BeginRead ( this gzipstream, Byte array, Int32 offset, Int32 count, AsyncCallback asyncCallback ) : IAsyncResult
gzipstream this
array Byte
offset System.Int32
count System.Int32
asyncCallback AsyncCallback
리턴 IAsyncResult

BeginWrite() 공개 정적인 메소드

Extends BeginWrite so that buffer offset of 0 and call to Array.Length are not needed. gzipstream.BeginWrite(array, asyncCallback);
public static BeginWrite ( this gzipstream, Byte array, AsyncCallback asyncCallback ) : IAsyncResult
gzipstream this
array Byte
asyncCallback AsyncCallback
리턴 IAsyncResult

BeginWrite() 공개 정적인 메소드

Extends BeginWrite so that when a state object is not needed, null does not need to be passed. gzipstream.BeginWrite(array, offset, count, asyncCallback);
public static BeginWrite ( this gzipstream, Byte array, Int32 offset, Int32 count, AsyncCallback asyncCallback ) : IAsyncResult
gzipstream this
array Byte
offset System.Int32
count System.Int32
asyncCallback AsyncCallback
리턴 IAsyncResult