public class IISHelper
{
static DirectoryEntry iisDE = new DirectoryEntry("IIS://localhost/W3SVC");
///<summary>
/// Get The Location IIS WebServers Information
///</summary>
///<returns></returns>
public static Hashtable GetLocationIIsWebServers()
{
Hashtable result = new Hashtable();
GetWebSiteInfo(ref result);
return result;
}