コード例 #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
ファイル: Base64Stream.cs プロジェクト: dox0/DotNet471RS3
 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
ファイル: Base64Stream.cs プロジェクト: chcosta/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;
 }
コード例 #4
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;
 }