List all properties of a IIS website, with C#
/// <summary> /// List all properties of a IIS website /// </summary> /// <param name="serverName">Name of the IIS server e.g. localhost</param> /// <param name="websiteName">Name of the website e.g. test</param> public void ListWebsiteProperties(string serverName, string websiteName)…