Aracılığıyla paylaş


DirectoryEntry.Guid Özellik

Tanım

GUID değerini DirectoryEntryalır.

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

Özellik Değeri

Guid GUID DirectoryEntrydeğerini temsil eden bir yapı.

Öznitelikler

Örnekler

Aşağıdaki örnekte sınıfının ve NativeGuid özellikleri gösterilmektedir.GuidDirectoryEntry Bu örnek, kullanıcı tarafından belirtilen DirectoryEntry öğesini alır ve ve GuidNativeGuid özelliklerini görüntüler.

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);

Açıklamalar

Active Directory Etki Alanı Hizmetleri'ndeki bir nesneye bağlanırken özelliğini kullanın NativeGuid .

Şunlara uygulanır

Ayrıca bkz.