System.Net.Security.SslStreamInternal.BeginWrite C# (CSharp) Method

BeginWrite() private method

private BeginWrite ( byte buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState ) : IAsyncResult
buffer byte
offset int
count int
asyncCallback AsyncCallback
asyncState object
return IAsyncResult
        internal IAsyncResult BeginWrite(byte[] buffer, int offset, int count, AsyncCallback asyncCallback, object asyncState)
        {
            var lazyResult = new LazyAsyncResult(this, asyncState, asyncCallback);
            ProcessWrite(buffer, offset, count, lazyResult);
            return lazyResult;
        }