AzureWebFarm.Services.Executable.Ping C# (CSharp) 메소드

Ping() 공개 메소드

public Ping ( ) : void
리턴 void
        public void Ping()
        {
            if (_process == null)
                return;

            if (IsRunning())
                return;

            if (_process.ExitCode != 0)
                _process.Start();
        }