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