9 references to Secure
System.DirectoryServices (8)
System\DirectoryServices\ActiveDirectory\Utils.cs (1)
46internal const AuthenticationTypes DefaultAuthType = AuthenticationTypes.Secure | AuthenticationTypes.Signing | AuthenticationTypes.Sealing;
System\DirectoryServices\DirectoryEntry.cs (5)
34private AuthenticationTypes _authenticationType = AuthenticationTypes.Secure; 67public 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)] 512DirectoryEntry rootDSE = new DirectoryEntry("LDAP://RootDSE", true, null, null, AuthenticationTypes.Secure);
System\DirectoryServices\DirectorySearcher.cs (2)
346DirectoryEntry 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)
155AuthenticationTypes authTypes = AuthenticationTypes.Secure;