9 references to Secure
System.DirectoryServices (8)
System\DirectoryServices\ActiveDirectory\Utils.cs (1)
46
internal const AuthenticationTypes DefaultAuthType = AuthenticationTypes.
Secure
| AuthenticationTypes.Signing | AuthenticationTypes.Sealing;
System\DirectoryServices\DirectoryEntry.cs (5)
34
private AuthenticationTypes _authenticationType = AuthenticationTypes.
Secure
;
67
public DirectoryEntry(string? path, string? username, string? password) : this(path, username, password, AuthenticationTypes.
Secure
)
107
: this(adsObject, true, null, null, AuthenticationTypes.
Secure
, true)
160
[DefaultValue(AuthenticationTypes.
Secure
)]
512
DirectoryEntry rootDSE = new DirectoryEntry("LDAP://RootDSE", true, null, null, AuthenticationTypes.
Secure
);
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.AccountManagement (1)
System\DirectoryServices\AccountManagement\AD\SDSUtils.cs (1)
155
AuthenticationTypes authTypes = AuthenticationTypes.
Secure
;