Esempio n. 1
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;
 }
Esempio n. 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;
 }
Esempio n. 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;
 }