Emveepee.Widgets.ProfilerSocket.Pause C# (CSharp) 메소드

Pause() 공개 메소드

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