7 references to SimpleBind
System.DirectoryServices.AccountManagement (7)
System\DirectoryServices\AccountManagement\AD\SDSUtils.cs (1)
157if ((options & ContextOptions.SimpleBind) != 0)
System\DirectoryServices\AccountManagement\Context.cs (6)
67private const ContextOptions defaultContextOptionsSimple = ContextOptions.SecureSocketLayer | ContextOptions.SimpleBind; 223current.AuthType = ((ContextOptions.SimpleBind & contextOptions) > 0 ? AuthType.Basic : AuthType.Negotiate); 389if ((options & ~(ContextOptions.Signing | ContextOptions.Negotiate | ContextOptions.Sealing | ContextOptions.SecureSocketLayer | ContextOptions.SimpleBind | ContextOptions.ServerBind)) != 0) 398(((options & (ContextOptions.Negotiate | ContextOptions.SimpleBind)) == 0) || 399(((options & (ContextOptions.Negotiate | ContextOptions.SimpleBind)) == ((ContextOptions.Negotiate | ContextOptions.SimpleBind))))))