Beispiel #1
0
 internal WriteAsyncResult(QEncodedStream 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;
 }
Beispiel #2
0
 internal WriteAsyncResult(QEncodedStream parent, byte[] buffer, int offset, int count, AsyncCallback?callback, object?state)
     : base(null, state, callback)
 {
     _parent = parent;
     _buffer = buffer;
     _offset = offset;
     _count  = count;
 }
 internal WriteAsyncResult(QEncodedStream 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;
 }