ExceptionSet 构造函数

定义

初始化 ExceptionSet 类的新实例。

重载

ExceptionSet()

使用默认属性值初始化 ExceptionSet 类的新实例。

ExceptionSet(IEnumerable<Exception>)

使用指定的异常初始化 ExceptionSet 类的新实例。

ExceptionSet()

使用默认属性值初始化 ExceptionSet 类的新实例。

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

适用于

ExceptionSet(IEnumerable<Exception>)

使用指定的异常初始化 ExceptionSet 类的新实例。

public:
 ExceptionSet(System::Collections::Generic::IEnumerable<Exception ^> ^ exceptions);
public ExceptionSet (System.Collections.Generic.IEnumerable<Exception> exceptions);
new Microsoft.SqlServer.Management.Data.ExceptionSet : seq<Exception> -> Microsoft.SqlServer.Management.Data.ExceptionSet
Public Sub New (exceptions As IEnumerable(Of Exception))

参数

exceptions
IEnumerable<Exception>

应用程序执行期间出现的错误。

适用于