/ Published in: C#
Expand |
Embed | Plain Text
Copy this code and paste it in your HTML
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()); } }