System\DirectoryServices\DirectoryEntry.cs (11)
34private AuthenticationTypes _authenticationType = AuthenticationTypes.Secure;
67public DirectoryEntry(string? path, string? username, string? password) : this(path, username, password, AuthenticationTypes.Secure)
74public DirectoryEntry(string? path, string? username, string? password, AuthenticationTypes authenticationType) : this(path)
86internal DirectoryEntry(string path, bool useCache, string? username, string? password, AuthenticationTypes authenticationType)
107: this(adsObject, true, null, null, AuthenticationTypes.Secure, true)
111internal DirectoryEntry(object adsObject, bool useCache, string? username, string? password, AuthenticationTypes authenticationType)
116internal DirectoryEntry(object adsObject, bool useCache, string? username, string? password, AuthenticationTypes authenticationType, bool AdsObjIsExternal)
160[DefaultValue(AuthenticationTypes.Secure)]
161public AuthenticationTypes AuthenticationType
512DirectoryEntry rootDSE = new DirectoryEntry("LDAP://RootDSE", true, null, null, AuthenticationTypes.Secure);