LdapConnection.Bind 方法

定义

发送 LDAP 绑定。

重载

Bind(NetworkCredential)

Bind(NetworkCredential) 方法使用指定的 NetworkCredential 发送 LDAP 绑定。

Bind()

Bind() 方法使用当前凭据发送 LDAP 绑定。

Bind(NetworkCredential)

Source:
LdapConnection.cs
Source:
LdapConnection.cs
Source:
LdapConnection.cs

Bind(NetworkCredential) 方法使用指定的 NetworkCredential 发送 LDAP 绑定。

public:
 void Bind(System::Net::NetworkCredential ^ newCredential);
public void Bind (System.Net.NetworkCredential newCredential);
member this.Bind : System.Net.NetworkCredential -> unit
Public Sub Bind (newCredential As NetworkCredential)

参数

newCredential
NetworkCredential

一个 NetworkCredential 对象,指定要使用的凭据。

例外

该对象句柄无效。

LDAP 返回的错误代码未映射到 ResultCode 枚举错误代码。

ClientCertificates 属性指定多个要发送的客户端证书以进行身份验证,或者 AuthType 属性为“匿名”,并提供一个或多个凭据。

适用于

Bind()

Source:
LdapConnection.cs
Source:
LdapConnection.cs
Source:
LdapConnection.cs

Bind() 方法使用当前凭据发送 LDAP 绑定。

public:
 void Bind();
public void Bind ();
member this.Bind : unit -> unit
Public Sub Bind ()

例外

该对象句柄无效。

LDAP 返回的错误代码未映射到其中一个 ResultCode 枚举错误代码。

ClientCertificates 属性指定多个要发送的客户端证书以进行身份验证,或者 AuthType 属性为“匿名”,并提供一个或多个凭据。

注解

绑定是 LDAP 服务器对客户端进行身份验证的步骤,如果客户端成功进行身份验证,则允许客户端基于该客户端的权限访问 LDAP 服务器。 如果使用 创建 ldap_connect连接,并且未调用绑定函数,请在 LDAP v3 服务器上以匿名方式运行。

适用于