下面的代码实现遍历 IIS 6应用程序池的一个方法

来源:互联网 发布:淘宝开店价格 编辑:程序博客网 时间:2024/05/16 19:27

下面的代码实现遍历 IIS 6应用程序池的一个方法:

System.DirectoryServices.DirectoryEntry appPoolRoot = new System.DirectoryServices.DirectoryEntry(@"IIS://localhost/W3SVC/AppPools");
//得到默认应用程序池的方法可以直接使用 IIS://localhost/W3SVC/AppPools/DefaultAppPool
System.Collections.IEnumerator AppPoolEnumer = appPoolRoot.Children.GetEnumerator();
while (AppPoolEnumer.MoveNext())
{
  System.DirectoryServices.DirectoryEntry EntryPool = (System.DirectoryServices.DirectoryEntry)AppPoolEnumer.Current;
  System.DirectoryServices.PropertyCollection properties = EntryPool.Properties;
  System.Collections.IDictionaryEnumerator propertiesEnumer = properties.GetEnumerator();
  textBox1.Text += "应用程序池名称 = " + EntryPool.Name + System.Environment.NewLine + "____________________________________________" + System.Environment.NewLine;
  while (propertiesEnumer.MoveNext())
  {
    System.DirectoryServices.PropertyValueCollection propertyvalue = (System.DirectoryServices.PropertyValueCollection)propertiesEnumer.Value;
    if (propertyvalue.Count > 1)
    {
      for (int j = 0; j < propertyvalue.Count; j++)
      {
        textBox1.Text += "Name=" + propertiesEnumer.Key.ToString() + "  Value= " + propertyvalue[j] + "--";
      }
    }
    else
    {
      textBox1.Text += "Name=" + propertiesEnumer.Key.ToString() + "  Value= " + propertyvalue[0] + System.Environment.NewLine;
    }
  }



Trackback: http://tb.blog.csdn.net/TrackBack.aspx?PostId=1062846

 
原创粉丝点击