DirectorySearcher.ExtendedDN Property
.NET Framework (current version)
Gets or sets a value that indicates the format of the distinguished names.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
<DSDescriptionAttribute("DSExtendedDn")> <ComVisibleAttribute(False)> Public Property ExtendedDN As ExtendedDN
The following example shows how to return a collection of distinguished names in hexadecimal format.
using System.DirectoryServices; ... DirectorySearcher src = new DirectorySearcher("…"); src.PropertiesToLoad = new string[] {ntSecurityDescriptor,…}; src.ExtendedDN = ExtendedDN.HexString; SearchResultCollection res = src.FindAll();
.NET Framework
Available since 2.0
Available since 2.0
Show: