System.IO.Stream.SyncStream.BeginRead C# (CSharp) 메소드

BeginRead() 개인적인 메소드

private BeginRead ( byte buffer, int offset, int count, AsyncCallback callback, Object state ) : IAsyncResult
buffer byte
offset int
count int
callback AsyncCallback
state Object
리턴 IAsyncResult
            public override IAsyncResult BeginRead(byte[] buffer, int offset, int count, AsyncCallback callback, Object state)
            {
                lock(_stream)
                    return _stream.BeginRead(buffer, offset, count, callback, state);
            }