共用方式為


XamlXmlWriterException 建構函式

定義

初始化 XamlXmlWriterException 類別的新執行個體。

多載

XamlXmlWriterException()

使用系統提供的錯誤描述訊息,初始化 XamlXmlWriterException 類別的新執行個體。

XamlXmlWriterException(String)

初始化具有指定的錯誤描述訊息之 XamlXmlWriterException 類別的新執行個體。

XamlXmlWriterException(SerializationInfo, StreamingContext)

使用序列化資料,初始化 XamlXmlWriterException 類別的新執行個體。

XamlXmlWriterException(String, Exception)

使用指定的錯誤訊息以及造成此例外狀況的內部例外狀況的參考,初始化 XamlXmlWriterException 類別的新執行個體。

XamlXmlWriterException()

使用系統提供的錯誤描述訊息,初始化 XamlXmlWriterException 類別的新執行個體。

public:
 XamlXmlWriterException();
public XamlXmlWriterException ();
Public Sub New ()

適用於

XamlXmlWriterException(String)

初始化具有指定的錯誤描述訊息之 XamlXmlWriterException 類別的新執行個體。

public:
 XamlXmlWriterException(System::String ^ message);
public XamlXmlWriterException (string message);
new System.Xaml.XamlXmlWriterException : string -> System.Xaml.XamlXmlWriterException
Public Sub New (message As String)

參數

message
String

說明例外狀況的訊息。 需要此建構函式的呼叫者,才能確保此字串已針對目前的系統文化特性進行當地語系化。

適用於

XamlXmlWriterException(SerializationInfo, StreamingContext)

使用序列化資料,初始化 XamlXmlWriterException 類別的新執行個體。

protected:
 XamlXmlWriterException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XamlXmlWriterException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xaml.XamlXmlWriterException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xaml.XamlXmlWriterException
Protected Sub New (info As SerializationInfo, context As StreamingContext)

參數

info
SerializationInfo

存放序列物件資料的物件。

context
StreamingContext

關於來源或目的端的內容資訊。

適用於

XamlXmlWriterException(String, Exception)

使用指定的錯誤訊息以及造成此例外狀況的內部例外狀況的參考,初始化 XamlXmlWriterException 類別的新執行個體。

public:
 XamlXmlWriterException(System::String ^ message, Exception ^ innerException);
public XamlXmlWriterException (string message, Exception innerException);
new System.Xaml.XamlXmlWriterException : string * Exception -> System.Xaml.XamlXmlWriterException
Public Sub New (message As String, innerException As Exception)

參數

message
String

說明例外狀況的訊息。 需要此建構函式的呼叫者,才能確保此字串已針對目前的系統文化特性進行當地語系化。

innerException
Exception

做為目前例外狀況發生原因的例外狀況。 如果 innerException 參數不是 null,則目前的例外狀況會在處理內部例外的 catch 區塊中引發。

備註

被擲回以做為前一個例外狀況直接結果的例外狀況,應該在 InnerException 屬性中包含對前一個例外狀況的參考。 InnerException 屬性傳回的值會與傳入建構函式的值相同,或傳回 null (如果 InnerException 屬性未提供內部例外狀況值給建構函式)。

適用於