LdapConnection Class
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
The LdapConnection class creates a TCP/IP or UDP LDAP connection to Microsoft Active Directory Domain Services or an LDAP server.
public ref class LdapConnection : System::DirectoryServices::Protocols::DirectoryConnection, IDisposable
public class LdapConnection : System.DirectoryServices.Protocols.DirectoryConnection, IDisposable
type LdapConnection = class
inherit DirectoryConnection
interface IDisposable
Public Class LdapConnection
Inherits DirectoryConnection
Implements IDisposable
- Inheritance
- Implements
Remarks
If the ClientCertificates property on the LdapConnection object and QueryClientCertificate property on the LdapSessionOptions object are both set, the certificate specified in the ClientCertificates property is ignored.
Constructors
LdapConnection(LdapDirectoryIdentifier, NetworkCredential, AuthType) |
The LdapConnection(LdapDirectoryIdentifier, NetworkCredential, AuthType) constructor creates an instance of the LdapConnection class using the specified directory identifier, network credentials, and authentication type. |
LdapConnection(LdapDirectoryIdentifier, NetworkCredential) |
The LdapConnection(LdapDirectoryIdentifier, NetworkCredential) constructor creates an instance of the LdapConnection class using the specified directory identifier and network credentials. Negotiate Authentication is used. |
LdapConnection(LdapDirectoryIdentifier) |
The LdapConnection(LdapDirectoryIdentifier) constructor creates an instance of the LdapConnection class using the specified directory identifier. The logon credentials and the Negotiate Authentication are used to connect to the LDAP server. |
LdapConnection(String) |
The LdapConnection(String) constructor creates an instance of the LdapConnection class using the specified server. |
Properties
AuthType |
The AuthType property contains the supported authentication types. |
AutoBind |
The AutoBind property specifies whether an automatic bind is allowed. |
ClientCertificates |
Gets one or more client certificates to send for authentication. (Inherited from DirectoryConnection) |
Credential |
The Credential property contains the network credentials for the object. |
Directory |
Gets the domain or the server to which the connection should be made. (Inherited from DirectoryConnection) |
SessionOptions |
The SessionOptions property contains an LdapSessionOptions object that specifies the session options. |
Timeout |
The Timeout property contains the length of time, in seconds, before the LdapConnection times out. |
Methods
Abort(IAsyncResult) |
The Abort(IAsyncResult) method cancels the asynchronous request. |
BeginSendRequest(DirectoryRequest, PartialResultProcessing, AsyncCallback, Object) |
Sends data asynchronously to the server. |
BeginSendRequest(DirectoryRequest, TimeSpan, PartialResultProcessing, AsyncCallback, Object) |
Sends data asynchronously to the server. |
Bind() |
The Bind() method sends an LDAP bind using the current credentials. |
Bind(NetworkCredential) |
The Bind(NetworkCredential) method sends an LDAP bind using the specified NetworkCredential. |
Dispose() |
The Dispose() method closes and releases the LDAP handle. |
Dispose(Boolean) |
The Dispose(Boolean) method closes the connection and optionally releases the LDAP handle. |
EndSendRequest(IAsyncResult) |
The EndSendRequest(IAsyncResult) method completes an asynchronous request. |
Equals(Object) |
Determines whether the specified object is equal to the current object. (Inherited from Object) |
Finalize() |
The Finalize() method allows an LdapConnection object to attempt to free resources and perform other cleanup operations before the LdapConnection object is reclaimed by garbage collection. |
GetHashCode() |
Serves as the default hash function. (Inherited from Object) |
GetPartialResults(IAsyncResult) |
The GetPartialResults(IAsyncResult) method retrieves partial results of an asynchronous operation. |
GetType() |
Gets the Type of the current instance. (Inherited from Object) |
MemberwiseClone() |
Creates a shallow copy of the current Object. (Inherited from Object) |
SendRequest(DirectoryRequest, TimeSpan) |
The SendRequest(DirectoryRequest, TimeSpan) method sends a single DirectoryRequest as an LDAP v3 operation. |
SendRequest(DirectoryRequest) |
The SendRequest(DirectoryRequest) method sends a single DirectoryRequest as an LDAP v3 operation. |
ToString() |
Returns a string that represents the current object. (Inherited from Object) |