예제 #1
0
파일: Base64Stream.cs 프로젝트: jnm2/corefx
 internal WriteAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
 {
     _parent = parent;
     _buffer = buffer;
     _offset = offset;
     _count  = count;
 }
예제 #2
0
 internal ReadAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
 {
     this.parent = parent;
     this.buffer = buffer;
     this.offset = offset;
     this.count  = count;
 }
예제 #3
0
 internal WriteAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
 {
     _parent = parent;
     _buffer = buffer;
     _offset = offset;
     _count = count;
 }
 internal ReadAsyncResult(Base64Stream parent, byte[] buffer, int offset, int count, AsyncCallback callback, object state) : base(null, state, callback)
 {
     this.parent = parent;
     this.buffer = buffer;
     this.offset = offset;
     this.count = count;
 }