DirectoryEntry.Guid Propriedade
Definição
Obtém o GUID do DirectoryEntry.Gets the GUID of the DirectoryEntry.
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
Valor da propriedade
Uma estrutura Guid que representa o GUID do DirectoryEntry.A Guid structure that represents the GUID of the DirectoryEntry.
- Atributos
Exemplos
O exemplo a seguir demonstra Guid as NativeGuid Propriedades e da DirectoryEntry classe.The following example demonstrates the Guid and NativeGuid properties of the DirectoryEntry class. Este exemplo obtém o especificado pelo usuário DirectoryEntry e exibe suas Guid NativeGuid Propriedades e.This example gets the user-specified DirectoryEntry and displays its Guid and NativeGuid properties.
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);
Comentários
Ao associar a um objeto no Active Directory Domain Services, use a NativeGuid propriedade.When binding to an object in Active Directory Domain Services, use the NativeGuid property.