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