System.Net.WebSockets.WebSocketHttpListenerDuplexStream.BeginWrite C# (CSharp) 메소드

BeginWrite() 공개 메소드

public BeginWrite ( 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 BeginWrite(byte[] buffer,
            int offset,
            int count,
            AsyncCallback callback,
            object state)
        {
            return _outputStream.BeginWrite(buffer, offset, count, callback, state);
        }