ExtendedDN 列挙型

定義

拡張された識別名を返す形式を指定する ExtendedDN 列挙体。 この列挙体は ExtendedDN プロパティで使用されます。

public enum class ExtendedDN
public enum ExtendedDN
type ExtendedDN = 
Public Enum ExtendedDN
継承
ExtendedDN

フィールド

HexString 0

16 進形式を使用して識別名を示します。

None -1

識別名形式を使用して識別名を示します。

Standard 1

標準文字列形式を使用して識別名を示します。

次の C# の例は、識別名のコレクションを 16 進数形式で返す方法を示しています。

using System.DirectoryServices;  
...  
DirectorySearcher src = new DirectorySearcher("…");  
src.PropertiesToLoad = new string[] {ntSecurityDescriptor,…};  
src.ExtendedDN = ExtendedDN.HexString;  
SearchResultCollection res = src.FindAll();  

注釈

識別名の拡張形式には、オブジェクトの objectGUID プロパティの文字列表現が含まれます。 ユーザー、グループ、コンピューターなどのセキュリティ プリンシパル オブジェクトの場合、拡張フォームには objectSID プロパティの文字列表現も含まれます。 objectGUID プロパティと objectSID プロパティの詳細については、「 Object-Guid 」および「 Object-Sid」を参照してください。

適用対象