0

以这种方式遍历 DirectoryEntry 对象时出现异常。我的问题是,我应该在哪里做哪些检查来确定是否没有 directoryEntries sites

        string metabasePath = "IIS://localhost/W3SVC";
        DirectoryEntry service = new DirectoryEntry(metabasePath);

        DirectoryEntries sites = service.Children;

        bool siteExists = false;
        foreach (DirectoryEntry directoryEntry in sites)
        {
            if (directoryEntry.Properties["ServerComment"][0].Equals(SiteName)) //exception thrown here
            {
                siteExists = true;
                break;
            }
        }

例外

指数超出范围。必须是非负数且小于集合的大小。
参数名称:
System.Collections.CollectionBase.System.Collections.IList.get_Item 处的索引(Int32 索引)

4

1 回答 1

2

看来问题出在这里

directoryEntry.Properties["ServerComment"][0]

如果是这种情况,这些额外的验证应该可以解决问题

if (directoryEntry.Properties["ServerComment"] != null &&
    directoryEntry.Properties["ServerComment"].Count > 0 &&
    directoryEntry.Properties["ServerComment"][0].Equals(SiteName))
于 2013-09-03T21:23:09.733 回答