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