DirectorySearcher.PropertiesToLoad 属性
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
获取一个值,该值指示搜索过程中要检索的属性列表。
public:
property System::Collections::Specialized::StringCollection ^ PropertiesToLoad { System::Collections::Specialized::StringCollection ^ get(); };
public System.Collections.Specialized.StringCollection PropertiesToLoad { get; }
[System.DirectoryServices.DSDescription("DSPropertiesToLoad")]
public System.Collections.Specialized.StringCollection PropertiesToLoad { get; }
member this.PropertiesToLoad : System.Collections.Specialized.StringCollection
[<System.DirectoryServices.DSDescription("DSPropertiesToLoad")>]
member this.PropertiesToLoad : System.Collections.Specialized.StringCollection
Public ReadOnly Property PropertiesToLoad As StringCollection
属性值
一个 StringCollection 对象,包含搜索过程中要检索的属性集。
默认值为空 StringCollection,即检索所有属性。
- 属性
注解
若要检索特定属性,请在开始搜索之前将其添加到此集合。 例如, searcher.PropertiesToLoad.Add("phone");
会将 phone 属性添加到搜索中要检索的属性列表。
搜索期间始终检索属性“ADsPath”。 在 Windows 2000 和更早版本的操作系统上,执行搜索的帐户必须是管理员组的成员才能检索 ntSecurityDescriptor 属性。 如果不是这样,则为 ntSecurityDescriptor 返回的属性值将为 null
。 有关详细信息,请参阅 NT-Security-描述符 一文。