LdapException 생성자
정의
중요
일부 정보는 릴리스되기 전에 상당 부분 수정될 수 있는 시험판 제품과 관련이 있습니다. Microsoft는 여기에 제공된 정보에 대해 어떠한 명시적이거나 묵시적인 보증도 하지 않습니다.
LdapException() 생성자는 LdapException 클래스의 인스턴스를 만듭니다.
오버로드
LdapException()
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
LdapException() 생성자는 LdapException 클래스의 인스턴스를 만듭니다.
public:
LdapException();
public LdapException ();
Public Sub New ()
적용 대상
LdapException(Int32)
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
LdapException(Int32) 생성자는 지정된 오류 코드를 사용하여 LdapException 클래스의 인스턴스를 만듭니다. 클라이언트에 표시되는 기본 메시지는 "Communications error with the LDAP server"입니다.
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)
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
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)
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
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)
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
주의
This API supports obsolete formatter-based serialization. It should not be called or extended by application code.
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);
[System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")]
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
[<System.Obsolete("This API supports obsolete formatter-based serialization. It should not be called or extended by application code.", DiagnosticId="SYSLIB0051", UrlFormat="https://aka.ms/dotnet-warnings/{0}")>]
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
매개 변수와 연결된 serialize된 스트림의 소스와 대상입니다.
- 특성
적용 대상
LdapException(String, Exception)
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
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)
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
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)
- Source:
- LdapException.cs
- Source:
- LdapException.cs
- Source:
- LdapException.cs
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 서버 오류 메시지입니다.
적용 대상
.NET