共用方式為


ErrorResponseException 建構函式

定義

ErrorResponseException() 建構函式會建立 ErrorResponseException 類別的實例。

多載

ErrorResponseException()

ErrorResponseException() 建構函式會建立 ErrorResponseException 類別的實例。

ErrorResponseException(DsmlErrorResponse)

ErrorResponseException(DsmlErrorResponse) 建構函式會使用指定的響應物件,建立 ErrorResponseException 類別的實例。 顯示給客戶端的預設訊息為 「<errorResponse> 傳回」。。

ErrorResponseException(String)

ErrorResponseException(String) 建構函式會使用指定的訊息,建立 ErrorResponseException 類別的實例。

ErrorResponseException(DsmlErrorResponse, String)

ErrorResponseException(DsmlErrorResponse, String) 建構函式會使用指定的響應物件和訊息,建立 ErrorResponseException 類別的實例。

ErrorResponseException(SerializationInfo, StreamingContext)

ErrorResponseException(SerializationInfo, StreamingContext) 建構函式會使用指定的串行化數據和串流內容,建立 ErrorResponseException 類別的實例。

ErrorResponseException(String, Exception)

ErrorResponseException(String, Exception) 建構函式會使用指定的訊息和內部例外狀況,建立 ErrorResponseException 類別的實例。

ErrorResponseException(DsmlErrorResponse, String, Exception)

ErrorResponseException(DsmlErrorResponse, String, Exception) 建構函式會使用指定的響應物件、訊息和內部例外狀況,建立 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) 建構函式會使用指定的串行化數據和串流內容,建立 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

串行化參數所需的數據。

context
StreamingContext

與參數相關聯的串行化數據流來源和目的地。

適用於

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

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

InnerException,如果有的話,就會擲回例外狀況。

適用於