System.Net.NetworkStreamWrapper.BeginRead C# (CSharp) 메소드

BeginRead() 공개 메소드

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