I'm using the following code to start website when it is stopped.
DirectoryEntry DE = new DirectoryEntry(string.Format("IIS://localhost/W3SVC/{0}", siteID));
if ((Int32)DE.InvokeGet("ServerState") != MD_SERVER_STATE_STARTED)
DE.Invoke("Start");
But it works only if the website is stop开发者_如何学Goped and not works if it is PAUSED. How can i start the website if it is in the PAUSED state?
To resume a site from the Paused
state you should invoke the Continue
method.
精彩评论