Assuming your thread has started and called:
Code:
_Server.Start();
Check to see if it's listening before calling Stop
Code:
public void Stop(bool isTerminate)
{
  if( _Server.IsListening )
  {
    _Server.Stop();
  }  
}