XamlInternalException 构造函数
定义
重要
一些信息与预发行产品相关,相应产品在发行之前可能会进行重大修改。 对于此处提供的信息,Microsoft 不作任何明示或暗示的担保。
初始化 XamlInternalException 类的新实例。
重载
XamlInternalException() |
使用说明错误的系统提供的消息初始化 XamlInternalException 类的新实例。 |
XamlInternalException(String) |
使用说明错误的指定消息初始化 XamlInternalException 类的新实例。 |
XamlInternalException(SerializationInfo, StreamingContext) |
用序列化数据初始化 XamlInternalException 类的新实例。 |
XamlInternalException(String, Exception) |
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 XamlInternalException 类的新实例。 |
XamlInternalException()
使用说明错误的系统提供的消息初始化 XamlInternalException 类的新实例。
public:
XamlInternalException();
public XamlInternalException ();
Public Sub New ()
适用于
XamlInternalException(String)
使用说明错误的指定消息初始化 XamlInternalException 类的新实例。
public:
XamlInternalException(System::String ^ message);
public XamlInternalException (string message);
new System.Xaml.XamlInternalException : string -> System.Xaml.XamlInternalException
Public Sub New (message As String)
参数
- message
- String
描述该异常的消息。
适用于
XamlInternalException(SerializationInfo, StreamingContext)
用序列化数据初始化 XamlInternalException 类的新实例。
protected:
XamlInternalException(System::Runtime::Serialization::SerializationInfo ^ info, System::Runtime::Serialization::StreamingContext context);
protected XamlInternalException (System.Runtime.Serialization.SerializationInfo info, System.Runtime.Serialization.StreamingContext context);
new System.Xaml.XamlInternalException : System.Runtime.Serialization.SerializationInfo * System.Runtime.Serialization.StreamingContext -> System.Xaml.XamlInternalException
Protected Sub New (info As SerializationInfo, context As StreamingContext)
参数
- info
- SerializationInfo
承载序列化对象数据的对象。
- context
- StreamingContext
关于来源和目标的上下文信息
适用于
XamlInternalException(String, Exception)
使用指定的错误消息和对作为此异常原因的内部异常的引用来初始化 XamlInternalException 类的新实例。
public:
XamlInternalException(System::String ^ message, Exception ^ innerException);
public XamlInternalException (string message, Exception innerException);
new System.Xaml.XamlInternalException : string * Exception -> System.Xaml.XamlInternalException
Public Sub New (message As String, innerException As Exception)
参数
- message
- String
描述该异常的消息。
- innerException
- Exception
导致当前异常的异常。 如果 innerException
参数不为 null
,则当前异常将在处理内部异常的 catch
块中引发。