LdapException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
LdapException() 생성자는 클래스의 인스턴스를 LdapException 만듭니다.
오버로드
LdapException()
LdapException() 생성자는 클래스의 인스턴스를 LdapException 만듭니다.
public:
LdapException();
public LdapException();
Public Sub New ()
적용 대상
LdapException(Int32)
LdapException(Int32) 생성자는 지정된 오류 코드를 사용하여 클래스의 LdapException 인스턴스를 만듭니다. 클라이언트에 표시되는 기본 메시지는 "LDAP 서버와의 통신 오류"입니다.
public:
LdapException(int errorCode);
public LdapException(int errorCode);
new System.DirectoryServices.Protocols.LdapException : int -> System.DirectoryServices.Protocols.LdapException
Public Sub New (errorCode As Integer)
매개 변수
- errorCode
- Int32
LDAP 구현에서 반환된 오류 코드입니다.
적용 대상
LdapException(String)
LdapException(String) 생성자는 지정된 메시지를 사용하여 클래스의 LdapException 인스턴스를 만듭니다.
public:
LdapException(System::String ^ message);
public LdapException(string message);
new System.DirectoryServices.Protocols.LdapException : string -> System.DirectoryServices.Protocols.LdapException
Public Sub New (message As String)
매개 변수
- message
- String
예외가 발생할 때 클라이언트에 표시되는 메시지입니다.
적용 대상
LdapException(Int32, String)
LdapException(Int32, String) 생성자는 지정된 오류 코드와 메시지를 사용하여 클래스의 LdapException 인스턴스를 만듭니다.
public:
LdapException(int errorCode, System::String ^ message);
public LdapException(int errorCode, string message);
new System.DirectoryServices.Protocols.LdapException : int * string -> System.DirectoryServices.Protocols.LdapException
Public Sub New (errorCode As Integer, message As String)
매개 변수
- errorCode
- Int32
LDAP 구현에서 반환된 오류 코드입니다.
- message
- String
예외가 발생할 때 클라이언트에 표시되는 메시지입니다.
적용 대상
LdapException(SerializationInfo, StreamingContext)
LdapException(SerializationInfo, StreamingContext) 생성자는 지정된 serialization 데이터 및 스트리밍 컨텍스트를 사용하여 클래스의 LdapException 인스턴스를 만듭니다.
protected:
LdapException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected LdapException(System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.DirectoryServices.Protocols.LdapException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.DirectoryServices.Protocols.LdapException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
매개 변수
- info
- SerializationInfo
매개 변수를 serialize하는 데 필요한 데이터입니다.
- context
- StreamingContext
매개 변수와 연결된 직렬화된 스트림의 원본 및 대상입니다.
적용 대상
LdapException(String, Exception)
LdapException(String, Exception) 생성자는 지정된 메시지 및 내부 예외를 사용하여 클래스의 LdapException 인스턴스를 만듭니다.
public:
LdapException(System::String ^ message, Exception ^ inner);
public LdapException(string message, Exception inner);
new System.DirectoryServices.Protocols.LdapException : string * Exception -> System.DirectoryServices.Protocols.LdapException
Public Sub New (message As String, inner As Exception)
매개 변수
- message
- String
예외가 발생할 때 클라이언트에 표시되는 메시지입니다.
- inner
- Exception
예외를 throw한 내부 예외(있는 경우)입니다.
적용 대상
LdapException(Int32, String, Exception)
LdapException(Int32, String, Exception) 생성자는 지정된 오류 코드, 메시지 및 내부 예외를 사용하여 클래스의 LdapException 인스턴스를 만듭니다.
public:
LdapException(int errorCode, System::String ^ message, Exception ^ inner);
public LdapException(int errorCode, string message, Exception inner);
new System.DirectoryServices.Protocols.LdapException : int * string * Exception -> System.DirectoryServices.Protocols.LdapException
Public Sub New (errorCode As Integer, message As String, inner As Exception)
매개 변수
- errorCode
- Int32
LDAP 구현에서 반환된 오류 코드입니다.
- message
- String
예외가 발생할 때 클라이언트에 표시되는 메시지입니다.
- inner
- Exception
예외를 throw한 내부 예외(있는 경우)입니다.
적용 대상
LdapException(Int32, String, String)
LdapException(Int32, String, String) 생성자는 지정된 오류 코드, 메시지 및 LDAP 서버 오류 메시지를 사용하여 클래스의 LdapException 인스턴스를 만듭니다.
public:
LdapException(int errorCode, System::String ^ message, System::String ^ serverErrorMessage);
public LdapException(int errorCode, string message, string serverErrorMessage);
new System.DirectoryServices.Protocols.LdapException : int * string * string -> System.DirectoryServices.Protocols.LdapException
Public Sub New (errorCode As Integer, message As String, serverErrorMessage As String)
매개 변수
- errorCode
- Int32
LDAP 구현에서 반환된 오류 코드입니다.
- message
- String
예외가 발생할 때 클라이언트에 표시되는 메시지입니다.
- serverErrorMessage
- String
LDAP 서버 오류 메시지입니다.