Return to Snippet

Revision: 2328
at February 1, 2007 13:48 by rengber


Initial Code
foreach(string name in entry.Properties.PropertyNames)
{
  LogEntry(name); 
  foreach(object o in entry.Properties[name])
  {
    //o is sometimes a COM object, but this is close.  
    LogEntry(o.ToString());
  }
}

Initial URL


Initial Description


Initial Title
Method to Iterate Through Properties of a System.DirectoryServices.DirectoryEntry

Initial Tags


Initial Language
C#