6 instantiations of LdapDirectoryIdentifier
System.DirectoryServices.AccountManagement (3)
System\DirectoryServices\AccountManagement\Context.cs (3)
154_directoryIdent = new LdapDirectoryIdentifier(_serverProperties.dnsHostName, useSSL ? _serverProperties.portSSL : _serverProperties.portLDAP); 158_directoryIdent = new LdapDirectoryIdentifier(_serverName, useSSL ? LdapConstants.LDAP_SSL_PORT : LdapConstants.LDAP_PORT); 1082LdapDirectoryIdentifier directoryid = new LdapDirectoryIdentifier(serverName, LdapConstants.LDAP_SSL_PORT);
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);
18 references to LdapDirectoryIdentifier
System.DirectoryServices.AccountManagement (2)
System\DirectoryServices\AccountManagement\Context.cs (2)
58private LdapDirectoryIdentifier _directoryIdent; 1082LdapDirectoryIdentifier directoryid = new LdapDirectoryIdentifier(serverName, LdapConstants.LDAP_SSL_PORT);
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\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);