private async void bStart_Click(object sender, EventArgs e) { try { Cursor = Cursors.WaitCursor; await AspManager.Start(); MessageBox.Show("Site successfully started", "Success", MessageBoxButtons.OKCancel, MessageBoxIcon.Information); } catch (Exception ex) { MessageBox.Show(ex.ToString(), "Error", MessageBoxButtons.OKCancel, MessageBoxIcon.Error); } finally { Cursor = Cursors.Hand; } }
public async Task <HttpResponseMessage> Start() { await AspManager.Start(); return(Request.CreateResponse(HttpStatusCode.OK, new { result = "Success", message = "IIS site successfully started" })); }