2 writes to SessionOptions
System.DirectoryServices.Protocols (2)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (2)
85SessionOptions = new LdapSessionOptions(this); 96SessionOptions = new LdapSessionOptions(this);
17 references to SessionOptions
System.DirectoryServices.AccountManagement (6)
System\DirectoryServices\AccountManagement\Context.cs (6)
172current.SessionOptions.SecureSocketLayer = useSSL; 178current.SessionOptions.FastConcurrentBind(); 188current.SessionOptions.SecureSocketLayer = useSSL; 224current.SessionOptions.Signing = ((ContextOptions.Signing & contextOptions) > 0 ? true : false); 225current.SessionOptions.Sealing = ((ContextOptions.Sealing & contextOptions) > 0 ? true : false); 1093ldapConnection.SessionOptions.SecureSocketLayer = useSSL;
System.DirectoryServices.Protocols (11)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (9)
727DereferenceAlias searchAliases = SessionOptions.DerefAlias; 728SessionOptions.DerefAlias = searchRequest.Aliases; 748SessionOptions.DerefAlias = searchAliases; 884if (count == 0 && SessionOptions._clientCertificateDelegate == null) 890if (SessionOptions._clientCertificateDelegate == null) 924X509Certificate cert = SessionOptions._clientCertificateDelegate(this, certAuthorities); 965SessionOptions.SetFqdnRequired(); 1121string serverErrorMessage = SessionOptions.ServerErrorMessage; 1905string serverErrorMessage = SessionOptions.ServerErrorMessage;
System\DirectoryServices\Protocols\ldap\LdapConnection.Linux.cs (2)
41else if (SessionOptions.SecureSocketLayer) 145SessionOptions.ProtocolVersion = 3;