AutomationDrivers.IisExpressHost.IisExpress.Quit C# (CSharp) Method

Quit() public method

Kills the IISExpress application based on the assigned pId
public Quit ( ) : void
return void
        public void Quit()
        {
            Process proc;
            if ((proc = Interlocked.Exchange(ref _process, null)) != null)
            {
                proc.Kill();
            }
        }