RequestException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 RequestException 類別的新實例。
多載
RequestException() |
初始化 RequestException 類別的新實例。 |
RequestException(String) |
使用指定的錯誤訊息,初始化 RequestException 類別的新實例。 |
RequestException(SerializationInfo, StreamingContext) |
使用串行化數據,初始化 RequestException 類別的新實例。 |
RequestException(String, Exception) |
使用指定的錯誤訊息和造成這個例外狀況的內部例外狀況參考,初始化 RequestException 類別的新實例。 |
RequestException()
初始化 RequestException 類別的新實例。
protected:
RequestException();
protected RequestException ();
Protected Sub New ()
備註
這個建構函式會將新實例的 Message 屬性初始化為描述錯誤的系統提供訊息。 此訊息會考慮目前的系統文化特性。
下表顯示新實例的初始屬性值。
財產 | 價值 |
---|---|
InnerException |
null 。 |
Message | 本地化的錯誤訊息字串。 |
適用於
RequestException(String)
使用指定的錯誤訊息,初始化 RequestException 類別的新實例。
protected:
RequestException(System::String ^ message);
protected RequestException (string message);
new System.IdentityModel.RequestException : string -> System.IdentityModel.RequestException
Protected Sub New (message As String)
參數
- message
- String
說明例外狀況原因的錯誤訊息。
備註
這個建構函式會使用 message
參數,初始化新例外狀況的 Message 屬性。
message
的內容是人類理解的。 需要此建構函式的呼叫端,以確保此字串已針對目前的系統文化特性當地語系化。
下表顯示新實例的初始屬性值。
財產 | 價值 |
---|---|
InnerException |
null 。 |
Message | 錯誤訊息字串。 |
適用於
RequestException(SerializationInfo, StreamingContext)
使用串行化數據,初始化 RequestException 類別的新實例。
protected:
RequestException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected RequestException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.IdentityModel.RequestException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.IdentityModel.RequestException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
參數
- info
- SerializationInfo
保存串行化對象資料的 SerializationInfo 物件。
- context
- StreamingContext
StreamingContext 物件,其中包含來源或目的地的相關內容資訊。
備註
這個建構函式會在還原串行化期間呼叫,以重新建構透過數據流傳輸的例外狀況物件。
適用於
RequestException(String, Exception)
使用指定的錯誤訊息和造成這個例外狀況的內部例外狀況參考,初始化 RequestException 類別的新實例。
protected:
RequestException(System::String ^ message, Exception ^ innerException);
protected RequestException (string message, Exception innerException);
new System.IdentityModel.RequestException : string * Exception -> System.IdentityModel.RequestException
Protected Sub New (message As String, innerException As Exception)
參數
- message
- String
說明例外狀況原因的錯誤訊息。
- innerException
- Exception
造成目前例外狀況的 Exception。 如果 innerException
參數不是 null
,則會在處理內部例外狀況的 catch
區塊中引發目前的例外狀況。
備註
擲回為先前例外狀況直接結果的例外狀況,應該在 InnerException 屬性中包含上一個例外狀況的參考。 InnerException 屬性會傳回傳入建構函式的相同值。
下表顯示新實例的初始屬性值。
財產 | 價值 |
---|---|
InnerException | 內部例外狀況參考。 |
Message | 錯誤訊息字串。 |