I have found this and I need to iterate over it and to get the names of all iis websites, how to iterate over it?
I need something like:
ServerManager iisManager = new ServerManager();
SiteCollection sites = iisManager.Sites;
foreach (string s in sites)
{
// tried to get all the sites names
}