共用方式為


LdapConnection 建構函式

定義

建立 LdapConnection 類別的實例。

多載

LdapConnection(LdapDirectoryIdentifier)

LdapConnection(LdapDirectoryIdentifier) 建構函式會使用指定的目錄標識碼,建立 LdapConnection 類別的實例。 登入認證和交涉驗證可用來連線到LDAP伺服器。

LdapConnection(String)

LdapConnection(String) 建構函式會使用指定的伺服器,建立 LdapConnection 類別的實例。

LdapConnection(LdapDirectoryIdentifier, NetworkCredential)

LdapConnection(LdapDirectoryIdentifier, NetworkCredential) 建構函式會使用指定的目錄標識碼和網路認證,建立 LdapConnection 類別的實例。 使用交涉驗證。

LdapConnection(LdapDirectoryIdentifier, NetworkCredential, AuthType)

LdapConnection(LdapDirectoryIdentifier, NetworkCredential, AuthType) 建構函式會使用指定的目錄標識碼、網路認證和驗證類型,建立 LdapConnection 類別的實例。

LdapConnection(LdapDirectoryIdentifier)

來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs

LdapConnection(LdapDirectoryIdentifier) 建構函式會使用指定的目錄標識碼,建立 LdapConnection 類別的實例。 登入認證和交涉驗證可用來連線到LDAP伺服器。

public:
 LdapConnection(System::DirectoryServices::Protocols::LdapDirectoryIdentifier ^ identifier);
public LdapConnection (System.DirectoryServices.Protocols.LdapDirectoryIdentifier identifier);
new System.DirectoryServices.Protocols.LdapConnection : System.DirectoryServices.Protocols.LdapDirectoryIdentifier -> System.DirectoryServices.Protocols.LdapConnection
Public Sub New (identifier As LdapDirectoryIdentifier)

參數

identifier
LdapDirectoryIdentifier

指定伺服器的 LdapDirectoryIdentifier 物件。

例外狀況

無法建立連線區塊或開啟與伺服器的連線。

適用於

LdapConnection(String)

來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs

LdapConnection(String) 建構函式會使用指定的伺服器,建立 LdapConnection 類別的實例。

public:
 LdapConnection(System::String ^ server);
public LdapConnection (string server);
new System.DirectoryServices.Protocols.LdapConnection : string -> System.DirectoryServices.Protocols.LdapConnection
Public Sub New (server As String)

參數

server
String

字串,指定可以是功能變數名稱、LDAP 伺服器名稱或虛線字串的伺服器,代表LDAP伺服器的IP位址。 或者,此參數也可以包含埠號碼,並以冒號分隔字串的右端(:)。

例外狀況

無法建立連線區塊或開啟與伺服器的連線。

適用於

LdapConnection(LdapDirectoryIdentifier, NetworkCredential)

來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs

LdapConnection(LdapDirectoryIdentifier, NetworkCredential) 建構函式會使用指定的目錄標識碼和網路認證,建立 LdapConnection 類別的實例。 使用交涉驗證。

public:
 LdapConnection(System::DirectoryServices::Protocols::LdapDirectoryIdentifier ^ identifier, System::Net::NetworkCredential ^ credential);
public LdapConnection (System.DirectoryServices.Protocols.LdapDirectoryIdentifier identifier, System.Net.NetworkCredential credential);
new System.DirectoryServices.Protocols.LdapConnection : System.DirectoryServices.Protocols.LdapDirectoryIdentifier * System.Net.NetworkCredential -> System.DirectoryServices.Protocols.LdapConnection
Public Sub New (identifier As LdapDirectoryIdentifier, credential As NetworkCredential)

參數

identifier
LdapDirectoryIdentifier

指定伺服器的 LdapDirectoryIdentifier 物件。

credential
NetworkCredential

NetworkCredential 物件,指定要使用的認證。

例外狀況

無法建立連線區塊或開啟與伺服器的連線。

適用於

LdapConnection(LdapDirectoryIdentifier, NetworkCredential, AuthType)

來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs
來源:
LdapConnection.cs

LdapConnection(LdapDirectoryIdentifier, NetworkCredential, AuthType) 建構函式會使用指定的目錄標識碼、網路認證和驗證類型,建立 LdapConnection 類別的實例。

public:
 LdapConnection(System::DirectoryServices::Protocols::LdapDirectoryIdentifier ^ identifier, System::Net::NetworkCredential ^ credential, System::DirectoryServices::Protocols::AuthType authType);
public LdapConnection (System.DirectoryServices.Protocols.LdapDirectoryIdentifier identifier, System.Net.NetworkCredential credential, System.DirectoryServices.Protocols.AuthType authType);
new System.DirectoryServices.Protocols.LdapConnection : System.DirectoryServices.Protocols.LdapDirectoryIdentifier * System.Net.NetworkCredential * System.DirectoryServices.Protocols.AuthType -> System.DirectoryServices.Protocols.LdapConnection
Public Sub New (identifier As LdapDirectoryIdentifier, credential As NetworkCredential, authType As AuthType)

參數

identifier
LdapDirectoryIdentifier

指定伺服器的 LdapDirectoryIdentifier 物件。

credential
NetworkCredential

NetworkCredential 物件,指定要使用的認證。

authType
AuthType

AuthType 值,指定要使用的驗證類型。

例外狀況

無法建立連線區塊或開啟與伺服器的連線。

authType 超出範圍。

authType 指定為匿名,但 credential 指定的認證。

適用於