Aracılığıyla paylaş


DirectoryEntry.NativeGuid Özellik

Tanım

Sağlayıcıdan döndürülen guid DirectoryEntrydeğerini alır.

public:
 property System::String ^ NativeGuid { System::String ^ get(); };
public string NativeGuid { get; }
[System.ComponentModel.Browsable(false)]
[System.DirectoryServices.DSDescription("DSNativeGuid")]
public string NativeGuid { get; }
member this.NativeGuid : string
[<System.ComponentModel.Browsable(false)>]
[<System.DirectoryServices.DSDescription("DSNativeGuid")>]
member this.NativeGuid : string
Public ReadOnly Property NativeGuid As String

Özellik Değeri

Guid Sağlayıcıdan döndürülen değerinin DirectoryEntryGUID değerini temsil eden 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 değerini 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);  
String^ myADSPath = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com";  
DirectoryEntry^ myDirectoryEntry = gcnew DirectoryEntry(myADSPath);  

// Display the Guid and NativeGuid.  
Console::WriteLine("The GUID of the ADS object: {0}", myDirectoryEntry->Guid));  
Console::WriteLine("The Native GUID of the ADS object: {0}",  
                   myDirectoryEntry->NativeGuid);  

Açıklamalar

NativeGuid Active Directory Domain Services bir nesneyi bağlarken özelliğini kullanın.

Not

Basit Dizin Erişim Protokolü (LDAP) sağlayıcısı, Internet Information Services (IIS), Novell NetWare Dizin Sunucusu (NDS) ve WinNT sağlayıcılarından farklı bir biçimde bir DirectoryEntry öğesinin genel olarak benzersiz tanımlayıcısını döndürür.

Şunlara uygulanır

Ayrıca bkz.