7 instantiations of LdapDirectoryIdentifier
Microsoft.AspNetCore.Authentication.Negotiate (1)
System.DirectoryServices.AccountManagement (3)
System.DirectoryServices.Protocols (3)
19 references to LdapDirectoryIdentifier
Microsoft.AspNetCore.Authentication.Negotiate (1)
System.DirectoryServices.AccountManagement (2)
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)
516if (AutoBind && (!_bounded || _needRebind) && !((LdapDirectoryIdentifier)Directory).Connectionless)
963if (((LdapDirectoryIdentifier)Directory).FullyQualifiedDnsHostName && !_setFQDNDone)
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);