TargetInvocationException 构造函数

定义

初始化 TargetInvocationException 类的新实例。

重载

TargetInvocationException(Exception)

用对作为此异常原因的内部异常的引用初始化 TargetInvocationException 类的新实例。

TargetInvocationException(String, Exception)

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

TargetInvocationException(Exception)

Source:
TargetInvocationException.cs
Source:
TargetInvocationException.cs
Source:
TargetInvocationException.cs

用对作为此异常原因的内部异常的引用初始化 TargetInvocationException 类的新实例。

public:
 TargetInvocationException(Exception ^ inner);
public TargetInvocationException (Exception inner);
public TargetInvocationException (Exception? inner);
new System.Reflection.TargetInvocationException : Exception -> System.Reflection.TargetInvocationException
Public Sub New (inner As Exception)

参数

inner
Exception

导致当前异常的异常。 如果 inner 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。

注解

因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null

下表显示了 TargetInvocationException 实例的初始属性值。

properties “值”
InnerException 内部异常引用。
Message 错误消息字符串。

另请参阅

适用于

TargetInvocationException(String, Exception)

Source:
TargetInvocationException.cs
Source:
TargetInvocationException.cs
Source:
TargetInvocationException.cs

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

public:
 TargetInvocationException(System::String ^ message, Exception ^ inner);
public TargetInvocationException (string message, Exception inner);
public TargetInvocationException (string? message, Exception? inner);
new System.Reflection.TargetInvocationException : string * Exception -> System.Reflection.TargetInvocationException
Public Sub New (message As String, inner As Exception)

参数

message
String

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

inner
Exception

导致当前异常的异常。 如果 inner 参数不为 null,则当前异常将在处理内部异常的 catch 块中引发。

注解

因前一个异常而直接引发的异常应在 InnerException 属性中包含对前一个异常的引用。 InnerException 属性将返回传递给构造函数的同一值;如果 InnerException 属性不向构造函数提供内部异常值,则返回 null

下表显示了 TargetInvocationException 实例的初始属性值。

properties “值”
InnerException 内部异常引用。
Message 错误消息字符串。

另请参阅

适用于