Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

IIS 6.0 DirectoryEntry properties list

Tags:

.net

iis-6

I'm new to accessing IIS 6.0 using C# code. I'm using DirectoryEntry to set properties in IIS, but would like to have better understandig of what properties that I can access, and how.

So if any of you have experiance using DirectoryEntry to access IIS 6.0, and know of a propertie list or a good staring point, can you help a new guy out?

like image 765
Gaotter Avatar asked Aug 18 '09 08:08

Gaotter


1 Answers

You can find a list of all MetaBase properties here. Note not all properties apply to all object types, the property documentation lists the object types that the property applies to.

If you look here, you can see a list of all the object types applicable to IIS and each lists which properties are valid for the type and here you can see the structure for object types containing other object types.

like image 122
AnthonyWJones Avatar answered Sep 28 '22 13:09

AnthonyWJones