Emveepee.Widgets.ProfilerSocket.Pause C# (CSharp) Method

Pause() public method

public Pause ( ) : void
return void
        public void Pause()
        {
            string resp = SendCommand ("disable\n");
            if (resp == "DONE\n")
                OnPaused ();
            else
                throw new Exception ("'disable' command produced error");
        }