XamlParseException 建構函式
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
初始化 XamlParseException 類別的新執行個體。
多載
XamlParseException() |
初始化 XamlParseException 類別的新執行個體。 |
XamlParseException(String) |
使用指定的例外狀況訊息字串,初始化 XamlParseException 類別的新執行個體。 |
XamlParseException(SerializationInfo, StreamingContext) |
初始化 XamlParseException 類別的新執行個體。 |
XamlParseException(String, Exception) |
使用指定的例外狀況訊息字串和內部例外狀況,初始化XamlParseException 類別的新執行個體。 |
XamlParseException(String, Int32, Int32) |
使用指定的例外狀況訊息字串和指定的行號與在行中的位置,初始化 XamlParseException 類別的新執行個體。 |
XamlParseException(String, Int32, Int32, Exception) |
使用指定的例外狀況訊息、內部例外狀況、行號和在行中的位置,初始化 XamlParseException 類別的新執行個體。 |
XamlParseException()
初始化 XamlParseException 類別的新執行個體。
public:
XamlParseException();
public XamlParseException ();
Public Sub New ()
適用於
XamlParseException(String)
使用指定的例外狀況訊息字串,初始化 XamlParseException 類別的新執行個體。
public:
XamlParseException(System::String ^ message);
public XamlParseException (string message);
new System.Windows.Markup.XamlParseException : string -> System.Windows.Markup.XamlParseException
Public Sub New (message As String)
參數
- message
- String
例外狀況訊息。
適用於
XamlParseException(SerializationInfo, StreamingContext)
初始化 XamlParseException 類別的新執行個體。
protected:
XamlParseException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XamlParseException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Windows.Markup.XamlParseException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Windows.Markup.XamlParseException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
參數
- info
- SerializationInfo
包含序列化或還原序列化物件所需的全部資訊。
- context
- StreamingContext
序列化資料流的來源和目的端。
備註
這個建構函式用於在應用程式域或計算機界限之間封送處理此類型的例外狀況時進行串行化。
適用於
XamlParseException(String, Exception)
使用指定的例外狀況訊息字串和內部例外狀況,初始化XamlParseException 類別的新執行個體。
public:
XamlParseException(System::String ^ message, Exception ^ innerException);
public XamlParseException (string message, Exception innerException);
new System.Windows.Markup.XamlParseException : string * Exception -> System.Windows.Markup.XamlParseException
Public Sub New (message As String, innerException As Exception)
參數
- message
- String
例外狀況訊息。
- innerException
- Exception
發生的初始例外狀況。
備註
以先前例外狀況直接結果擲回的例外狀況應該包含先前例外狀況的參考。
InnerException 屬性傳回的值會與傳入建構函式的值相同,或傳回 null
(如果 InnerException 屬性未提供內部例外狀況值給建構函式)。
適用於
XamlParseException(String, Int32, Int32)
使用指定的例外狀況訊息字串和指定的行號與在行中的位置,初始化 XamlParseException 類別的新執行個體。
public:
XamlParseException(System::String ^ message, int lineNumber, int linePosition);
public XamlParseException (string message, int lineNumber, int linePosition);
new System.Windows.Markup.XamlParseException : string * int * int -> System.Windows.Markup.XamlParseException
Public Sub New (message As String, lineNumber As Integer, linePosition As Integer)
參數
- message
- String
例外狀況訊息。
- lineNumber
- Int32
發生例外狀況的行號。
- linePosition
- Int32
行中發生例外狀況的位置。
適用於
XamlParseException(String, Int32, Int32, Exception)
使用指定的例外狀況訊息、內部例外狀況、行號和在行中的位置,初始化 XamlParseException 類別的新執行個體。
public:
XamlParseException(System::String ^ message, int lineNumber, int linePosition, Exception ^ innerException);
public XamlParseException (string message, int lineNumber, int linePosition, Exception innerException);
new System.Windows.Markup.XamlParseException : string * int * int * Exception -> System.Windows.Markup.XamlParseException
Public Sub New (message As String, lineNumber As Integer, linePosition As Integer, innerException As Exception)
參數
- message
- String
例外狀況訊息。
- lineNumber
- Int32
發生例外狀況的行號。
- linePosition
- Int32
行中發生例外狀況的位置。
- innerException
- Exception
發生的初始例外狀況。
備註
以先前例外狀況直接結果擲回的例外狀況應該包含先前例外狀況的參考。
InnerException 屬性傳回的值會與傳入建構函式的值相同,或傳回 null
(如果 InnerException 屬性未提供內部例外狀況值給建構函式)。