Example #1
0
 private void closeTcp()
 {
     tcp.LingerState = new LingerOption(true, 5);
     tcp.Client.Shutdown(SocketShutdown.Both);
     tcp.Dispose();
     tcp.Close();
     tcp = null;
 }