8 references to DirectoryEntry
System.DirectoryServices (8)
System\DirectoryServices\DirectoryEntry.cs (4)
297
return new
DirectoryEntry
(_adsObject.Parent, UsePropertyCache, GetUsername(), GetPassword(), AuthenticationType);
380
return new
DirectoryEntry
(_adsObject.Schema, UsePropertyCache, GetUsername(), GetPassword(), AuthenticationType);
512
DirectoryEntry rootDSE = new
DirectoryEntry
("LDAP://RootDSE", true, null, null, AuthenticationTypes.Secure);
547
DirectoryEntry newEntry = new
DirectoryEntry
(this.Path, this.UsePropertyCache, this.GetUsername(), this.GetPassword(), this.AuthenticationType);
System\DirectoryServices\DirectorySearcher.cs (2)
346
DirectoryEntry rootDSE = new
DirectoryEntry
("LDAP://RootDSE", true, null, null, AuthenticationTypes.Secure);
353
_searchRoot = new
DirectoryEntry
("LDAP://" + defaultNamingContext, true, null, null, AuthenticationTypes.Secure);
System\DirectoryServices\SearchResult.cs (2)
30
return new
DirectoryEntry
(Path, true, _parentCredentials.UserName, _parentCredentials.Password, _parentAuthenticationType);
33
DirectoryEntry newEntry = new
DirectoryEntry
(Path, true, null, null, _parentAuthenticationType);