DirectoryEntry::Password Property
.NET Framework (current version)
Sets the password to use when authenticating the client.
Assembly: System.DirectoryServices (in System.DirectoryServices.dll)
public: [DSDescriptionAttribute("DSPassword")] [BrowsableAttribute(false)] property String^ Password { void set(String^ value); }
You can set the Username and Password properties to specify alternate credentials with which to access the information in Active Directory Domain Services. Any other DirectoryEntry objects retrieved from this instance (for example, through Children) are automatically created with the same alternate credentials.
The following example demonstrates the Username and Password properties of the DirectoryEntry class. This example gets the user-specified DirectoryEntry and the Path of all its Children.
String^ myADSPath = "LDAP://onecity/CN=Users,DC=onecity,DC=corp,DC=fabrikam,DC=com"; // Create an Instance of DirectoryEntry. DirectoryEntry^ myDirectoryEntry = gcnew DirectoryEntry(myADSPath); myDirectoryEntry->Username = UserName; myDirectoryEntry->Password = SecurelyStoredPassword; // Get the Child ADS objects. Console::WriteLine("The Child ADS objects are:"); Collections::IEnumerator^ myEnum = myDirectoryEntry->Children->GetEnumerator(); while (myEnum->MoveNext()) { DirectoryEntry^ myChildDirectoryEntry = safe_cast<DirectoryEntry^> (myEnum->Current); Console::WriteLine(myChildDirectoryEntry->Path); }
.NET Framework
Available since 1.1
Available since 1.1
Show: