YGOSharp.CoreServer.StopListening C# (CSharp) Method

StopListening() public method

public StopListening ( ) : void
return void
        public void StopListening()
        {
            if (!IsListening)
                return;
            IsListening = false;
            _listener.Close();
        }