AzureWebFarm.Services.Executable.Wait C# (CSharp) Method

Wait() public method

public Wait ( System.TimeSpan maxWait ) : void
maxWait System.TimeSpan
return void
        public void Wait(TimeSpan maxWait)
        {
            if (_process != null)
                _process.WaitForExit(Convert.ToInt32(maxWait.TotalMilliseconds));
        }