4 instantiations of LdapDirectoryIdentifier
Microsoft.AspNetCore.Authentication.Negotiate (1)
PostConfigureNegotiateOptions.cs (1)
71var di = new LdapDirectoryIdentifier(server: ldapSettings.Domain, fullyQualifiedDnsHostName: true, connectionless: false);
System.DirectoryServices.Protocols (3)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (1)
54public LdapConnection(string server) : this(new LdapDirectoryIdentifier(server))
System\DirectoryServices\Protocols\ldap\LdapSessionOptions.cs (2)
899var identifier = new LdapDirectoryIdentifier(target); 963var identifier = new LdapDirectoryIdentifier(target);
17 references to LdapDirectoryIdentifier
Microsoft.AspNetCore.Authentication.Negotiate (1)
PostConfigureNegotiateOptions.cs (1)
71var di = new LdapDirectoryIdentifier(server: ldapSettings.Domain, fullyQualifiedDnsHostName: true, connectionless: false);
System.DirectoryServices.Protocols (16)
System\DirectoryServices\Protocols\ldap\LdapConnection.cs (6)
58public LdapConnection(LdapDirectoryIdentifier identifier) : this(identifier, null, AuthType.Negotiate) 62public LdapConnection(LdapDirectoryIdentifier identifier, NetworkCredential credential) : this(identifier, credential, AuthType.Negotiate) 66public unsafe LdapConnection(LdapDirectoryIdentifier identifier, NetworkCredential credential, AuthType authType) 89internal unsafe LdapConnection(LdapDirectoryIdentifier identifier, NetworkCredential credential, AuthType authType, IntPtr handle) 522if (AutoBind && (!_bounded || _needRebind) && ((LdapDirectoryIdentifier)Directory).Connectionless != true) 969if (((LdapDirectoryIdentifier)Directory).FullyQualifiedDnsHostName && !_setFQDNDone)
System\DirectoryServices\Protocols\ldap\LdapConnection.Linux.cs (3)
18if ((LdapDirectoryIdentifier)_directoryIdentifier == null) 36LdapDirectoryIdentifier directoryIdentifier = (LdapDirectoryIdentifier)_directoryIdentifier;
System\DirectoryServices\Protocols\ldap\LdapSessionOptions.cs (7)
17public delegate LdapConnection QueryForConnectionCallback(LdapConnection primaryConnection, LdapConnection referralFromConnection, string newDistinguishedName, LdapDirectoryIdentifier identifier, NetworkCredential credential, long currentUserToken); 18public delegate bool NotifyOfNewConnectionCallback(LdapConnection primaryConnection, LdapConnection referralFromConnection, string newDistinguishedName, LdapDirectoryIdentifier identifier, LdapConnection newConnection, NetworkCredential credential, long currentUserToken, int errorCodeFromBind); 899var identifier = new LdapDirectoryIdentifier(target); 925tempReferralConnection = new LdapConnection(((LdapDirectoryIdentifier)(_connection.Directory)), _connection.GetCredential(), _connection.AuthType, ReferralFromConnection); 963var identifier = new LdapDirectoryIdentifier(target); 990tempReferralConnection = new LdapConnection(((LdapDirectoryIdentifier)(_connection.Directory)), _connection.GetCredential(), _connection.AuthType, referralFromConnection); 1057dereferenceConnection = new LdapConnection(((LdapDirectoryIdentifier)(_connection.Directory)), _connection.GetCredential(), _connection.AuthType, ConnectionToDereference);