System.Net.PooledStream.UnsafeBeginRead C# (CSharp) 메소드

UnsafeBeginRead() 개인적인 메소드

private UnsafeBeginRead ( byte buffer, int offset, int size, AsyncCallback callback, Object state ) : IAsyncResult
buffer byte
offset int
size int
callback AsyncCallback
state Object
리턴 IAsyncResult
        internal virtual IAsyncResult UnsafeBeginRead(byte[] buffer, int offset, int size, AsyncCallback callback, Object state)
        {
            return m_NetworkStream.UnsafeBeginRead(buffer, offset, size, callback, state);
        }