任何人都可以提供一个如何遍历System.DirectoryServices.PropertyCollection并输出属性名称和值的示例吗?
我正在使用C#。
@JaredPar - PropertyCollection没有Name / Value属性。它有一个PropertyNames和Values,类型为System.Collection.ICollection。我不知道构成PropertyCollection对象的基线对象类型。
@JaredPar再次 - 我最初用错误的类型错误地标记了问题。那是我的坏事。
更新:根据Zhaph-Ben Duguid输入,我能够开发以下代码。
using System.Collections;
using System.DirectoryServices;
public void DisplayValue(DirectoryEntry de)
{
if(de.Children != null)
{
foreach(DirectoryEntry child in de.Children)
{
PropertyCollection pc = child.Properties;
IDictionaryEnumerator ide = pc.GetEnumerator();
ide.Reset();
while(ide.MoveNext())
{
PropertyValueCollection pvc = ide.Entry.Value as PropertyValueCollection;
Console.WriteLine(string.Format("Name: {0}", ide.Entry.Key.ToString()));
Console.WriteLine(string.Format("Value: {0}", pvc.Value));
}
}
}
}
答案 0 :(得分:27)
在监视窗口中查看运行时PropertyValueCollection的值以标识元素的类型,它包含&你可以对它进行扩展,以进一步了解每个元素的属性。
添加到@ JaredPar的代码
PropertyCollection collection = GetTheCollection();
foreach ( PropertyValueCollection value in collection ) {
// Do something with the value
Console.WriteLine(value.PropertyName);
Console.WriteLine(value.Value);
Console.WriteLine(value.Count);
}
编辑:PropertyCollection由PropertyValueCollection
组成答案 1 :(得分:5)
PropertyCollection有一个PropertyName集合 - 这是一个字符串集合(参见PropertyCollection.Contains和PropertyCollection.Item,两者都是字符串)。
您通常可以调用GetEnumerator以允许您使用通常的枚举方法枚举集合 - 在这种情况下,您将获得包含字符串键的IDictionary,然后是每个项目/值的对象
答案 2 :(得分:5)
usr = result.GetDirectoryEntry();
foreach (string strProperty in usr.Properties.PropertyNames)
{
Console.WriteLine("{0}:{1}" ,strProperty, usr.Properties[strProperty].Value);
}
答案 3 :(得分:2)
foreach(var k in collection.Keys)
{
string name = k;
string value = collection[k];
}
答案 4 :(得分:0)
编辑我误读了OP,因为说过PropertyValueCollection而不是PropertyCollection。留下帖子,因为其他帖子正在引用它。
我不确定我理解你在问什么你只是想要遍历集合中的每个值?如果是这样,这段代码将起作用
PropertyValueCollection collection = GetTheCollection();
foreach ( object value in collection ) {
// Do something with the value
}
打印名称/值
Console.WriteLine(collection.Name);
Console.WriteLine(collection.Value);
答案 5 :(得分:0)
我认为有一种更简单的方法
foreach (DictionaryEntry e in child.Properties)
{
Console.Write(e.Key);
Console.Write(e.Value);
}
答案 6 :(得分:0)
如果你只想要一些物品,你真的不需要做任何神奇的事情......
使用语句:System,System.DirectoryServices和System.AccountManagement
public void GetUserDetail(string username, string password)
{
UserDetail userDetail = new UserDetail();
try
{
PrincipalContext principalContext = new PrincipalContext(ContextType.Domain, "mydomain.com", username, password);
//Authenticate against Active Directory
if (!principalContext.ValidateCredentials(username, password))
{
//Username or Password were incorrect or user doesn't exist
return userDetail;
}
//Get the details of the user passed in
UserPrincipal userPrincipal = UserPrincipal.FindByIdentity(principalContext, principalContext.UserName);
//get the properties of the user passed in
DirectoryEntry directoryEntry = userPrincipal.GetUnderlyingObject() as DirectoryEntry;
userDetail.FirstName = directoryEntry.Properties["givenname"].Value.ToString();
userDetail.LastName = directoryEntry.Properties["sn"].Value.ToString();
}
catch (Exception ex)
{
//Catch your Excption
}
return userDetail;
}
答案 7 :(得分:0)
我在另一个帖子上发布了我的答案,然后发现这个帖子提出了类似的问题。
我尝试了建议的方法,但在转换为DictionaryEntry时总是得到一个无效的强制转换异常。使用DictionaryEntry,像FirstOrDefault这样的东西很时髦。所以,我只是这样做:
var directoryEntry = adUser.GetUnderlyingObject() as DirectoryEntry;
directoryEntry.RefreshCache();
var propNames = directoryEntry.Properties.PropertyNames.Cast<string>();
var props = propNames
.Select(x => new { Key = x, Value = directoryEntry.Properties[x].Value.ToString() })
.ToList();
有了这个,我就可以直接通过Key轻松查询任何属性。使用合并和安全导航操作符允许默认为空字符串或其他..
var myProp = props.FirstOrDefault(x => x.Key == "someKey"))?.Value ?? string.Empty;
如果我想查看所有道具,它就是一个类似的道具。
foreach (var prop in props)
{
Console.WriteLine($"{prop.Key} - {prop.Value}");
}
请注意&#34; adUser&#34; object是UserPrincipal对象。
答案 8 :(得分:0)
public string GetValue(string propertyName, SearchResult result)
{
foreach (var property in result.Properties)
{
if (((DictionaryEntry)property).Key.ToString() == propertyName)
{
return ((ResultPropertyValueCollection)((DictionaryEntry)property).Value)[0].ToString();
}
}
return null;
}
答案 9 :(得分:0)
我不确定为什么这么难找到答案,但是使用下面的代码我可以循环遍历所有属性并拉出我想要的那个并重用任何属性的代码。 如果需要,可以以不同方式处理目录条目部分
getAnyProperty("[servername]", @"CN=[cn name]", "description");
public List<string> getAnyProperty(string originatingServer, string distinguishedName, string propertyToSearchFor)
{
string path = "LDAP://" + originatingServer + @"/" + distinguishedName;
DirectoryEntry objRootDSE = new DirectoryEntry(path, [Username], [Password]);
// DirectoryEntry objRootDSE = new DirectoryEntry();
List<string> returnValue = new List<string>();
System.DirectoryServices.PropertyCollection properties = objRootDSE.Properties;
foreach (string propertyName in properties.PropertyNames)
{
PropertyValueCollection propertyValues = properties[propertyName];
if (propertyName == propertyToSearchFor)
{
foreach (string propertyValue in propertyValues)
{
returnValue.Add(propertyValue);
}
}
}
return returnValue;
}