62,243
社区成员




Dictionary<string, string> result = new Dictionary<string, string>();
DirectoryEntry root = new DirectoryEntry("IIS://localhost/W3SVC");
foreach (DirectoryEntry e in root.Children) {
result[e.SchemaClassName] = e.SchemaClassName;
}