NLog.Internal.NetworkSenders.NetworkSender.DoSend C# (CSharp) Method

DoSend() protected abstract method

Actually sends the given text over the specified protocol.
To be overridden in inheriting classes.
protected abstract DoSend ( byte bytes, int offset, int length, AsyncContinuation asyncContinuation ) : void
bytes byte The bytes to be sent.
offset int Offset in buffer.
length int Number of bytes to send.
asyncContinuation AsyncContinuation The async continuation to be invoked after the buffer has been sent.
return void
        protected abstract void DoSend(byte[] bytes, int offset, int length, AsyncContinuation asyncContinuation);