D
David
Having:Socket mysocket = new Socket
(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.Tcp);
I cannot execute mysocket.Close() after executing
mysocket.BeginAccept(new AsyncCallback(ServerAcceptConn)..
The system complains giving a hint "AcceptCallback"
What should I execute before closing to not have this
error message?
Thanks.
(AddressFamily.InterNetwork, SocketType.Stream,
ProtocolType.Tcp);
I cannot execute mysocket.Close() after executing
mysocket.BeginAccept(new AsyncCallback(ServerAcceptConn)..
The system complains giving a hint "AcceptCallback"
What should I execute before closing to not have this
error message?
Thanks.