6 references to SecureSocketLayer
System.DirectoryServices.AccountManagement (6)
System\DirectoryServices\AccountManagement\AD\SDSUtils.cs (1)
163if ((options & ContextOptions.SecureSocketLayer) != 0)
System\DirectoryServices\AccountManagement\Context.cs (5)
67private const ContextOptions defaultContextOptionsSimple = ContextOptions.SecureSocketLayer | ContextOptions.SimpleBind; 150bool useSSL = (ContextOptions.SecureSocketLayer & contextOptions) > 0; 389if ((options & ~(ContextOptions.Signing | ContextOptions.Negotiate | ContextOptions.Sealing | ContextOptions.SecureSocketLayer | ContextOptions.SimpleBind | ContextOptions.ServerBind)) != 0) 710((ContextOptions.SecureSocketLayer & _options) > 0 ? _serverProperties.portSSL : _serverProperties.portLDAP); 1078bool useSSL = (_options & ContextOptions.SecureSocketLayer) > 0;