internal void BeginUnBind()
 {
     if (TcpConnection.Connected)
     {
         SendResPdu(new SmppUnBindReq().ToByteArray());
         TcpConnection.Disconnect();
     }
     LastBindRes = null;
 }
Beispiel #2
0
 /// <summary>
 /// Disconnects the client from the broker's remote servers
 /// </summary>
 public override void Disconnect()
 {
     _sockClient.Disconnect();
 }