XamlParseException 构造函数

定义

重载

XamlParseException()

使用默认值初始化 XamlParseException 类的新实例。

XamlParseException(String)

用指定的错误消息初始化 XamlParseException 类的新实例。

XamlParseException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 XamlParseException 类的新实例。

XamlParseException()

使用默认值初始化 XamlParseException 类的新实例。

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

适用于

XamlParseException(String)

用指定的错误消息初始化 XamlParseException 类的新实例。

public:
 XamlParseException(System::String ^ message);
public XamlParseException (string message);
new Windows.UI.Xaml.Markup.XamlParseException : string -> Windows.UI.Xaml.Markup.XamlParseException
Public Sub New (message As String)

参数

message
String

解释异常原因的错误消息。

适用于

XamlParseException(String, Exception)

使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 XamlParseException 类的新实例。

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

参数

message
String

解释异常原因的错误消息。

innerException
Exception

作为当前异常原因的异常,如果没有指定内部异常,则为 null

适用于