bitmessage.NodeConnection.Stop C# (CSharp) 메소드

Stop() 개인적인 메소드

private Stop ( string msg = null ) : void
msg string
리턴 void
        internal void Stop(string msg = null)
        {
            if (!string.IsNullOrEmpty(msg))
                debug(msg);
            debug("Stop");
            _tcpClient.Close();
        }