LumiSoft.Net.AsyncSocketHelper.BeginSend C# (CSharp) Метод

BeginSend() публичный статический Метод

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.
Результат void
        public static void BeginSend(BufferedSocket socket,Stream strm,object tag,SocketCallBack callBack)
        {
            SendDataBlock(socket,strm,tag,callBack);
        }