LdapConnection 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
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)
- Source:
- LdapConnection.cs
- Source:
- LdapConnection.cs
- Source:
- 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)
- Source:
- LdapConnection.cs
- Source:
- LdapConnection.cs
- Source:
- 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)
- Source:
- LdapConnection.cs
- Source:
- LdapConnection.cs
- Source:
- 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)
- Source:
- LdapConnection.cs
- Source:
- LdapConnection.cs
- Source:
- 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
는 익명으로 지정되지만 credential
지정된 자격 증명입니다.
적용 대상
.NET