LumiSoft.Net.AsyncSocketHelper.BeginSend C# (CSharp) Method

BeginSend() public static method

Begins asynchronous sending.
public static BeginSend ( BufferedSocket socket, Stream strm, object tag, SocketCallBack callBack ) : void
socket BufferedSocket Socket where to send data.
strm Stream Data to send.
tag object User data.
callBack SocketCallBack Method to call, if send completes.
return void
        public static void BeginSend(BufferedSocket socket,Stream strm,object tag,SocketCallBack callBack)
        {
            SendDataBlock(socket,strm,tag,callBack);
        }