有没有办法获取创建/更新Active Directory条目的用户的ID?我可以像这样创建条目的日期:
var directoryEntry = principal.GetUnderlyingObject() as DirectoryEntry;
if (!directoryEntry.Properties.Contains(property)) return null;
var createdDate = irectoryEntry.Properties["whenCreated"].Value.ToString();
但是,我不确定我可以使用哪个属性名来获取创建条目的用户的ID,或者AD是否公开该属性。