次の方法で共有


DirectoryEntry.Guid プロパティ

定義

DirectoryEntryの GUID を取得します。

public:
 property Guid Guid { Guid get(); };
public Guid Guid { get; }
[System.ComponentModel.Browsable(false)]
[System.DirectoryServices.DSDescription("DSGuid")]
public Guid Guid { get; }
member this.Guid : Guid
[<System.ComponentModel.Browsable(false)>]
[<System.DirectoryServices.DSDescription("DSGuid")>]
member this.Guid : Guid
Public ReadOnly Property Guid As Guid

プロパティ値

DirectoryEntryの GUID を表すGuid構造体。

属性

次の例では、DirectoryEntry クラスのGuidプロパティとNativeGuidプロパティを示します。 この例では、ユーザー指定の DirectoryEntry を取得し、その Guid プロパティと NativeGuid プロパティを表示します。

Dim myADSPath As [String] = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com"
Dim myDirectoryEntry As New DirectoryEntry(myADSPath)

' Display the Guid and NativeGuid.
Console.WriteLine("The GUID of the ADS object:" + myDirectoryEntry.Guid.ToString)
Console.WriteLine("The Native GUID of the ADS" + "object:" + myDirectoryEntry.NativeGuid)
String myADSPath = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com";
DirectoryEntry myDirectoryEntry=new DirectoryEntry(myADSPath);

// Display the Guid and NativeGuid.
Console.WriteLine("The GUID of the ADS object:"+
                  myDirectoryEntry.Guid);
Console.WriteLine("The Native GUID of the ADS"+
                  "object:"+myDirectoryEntry.NativeGuid);

注釈

Active Directory Domain Services のオブジェクトにバインドする場合は、 NativeGuid プロパティを使用します。

適用対象

こちらもご覧ください