IDTSEvents100.OnError 方法

定义

出现错误时由任务或容器调用。

public:
 void OnError(Microsoft::SqlServer::Dts::Runtime::Wrapper::IDTSRuntimeObject100 ^ pSource, int ErrorCode, System::String ^ SubComponent, System::String ^ Description, System::String ^ HelpFile, int HelpContext, System::String ^ IDOfInterfaceWithError, [Runtime::InteropServices::Out] bool % pbCancel);
[System.Runtime.InteropServices.DispId(6)]
public void OnError (Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSRuntimeObject100 pSource, int ErrorCode, string SubComponent, string Description, string HelpFile, int HelpContext, string IDOfInterfaceWithError, out bool pbCancel);
[<System.Runtime.InteropServices.DispId(6)>]
abstract member OnError : Microsoft.SqlServer.Dts.Runtime.Wrapper.IDTSRuntimeObject100 * int * string * string * string * int * string * bool -> unit
Public Sub OnError (pSource As IDTSRuntimeObject100, ErrorCode As Integer, SubComponent As String, Description As String, HelpFile As String, HelpContext As Integer, IDOfInterfaceWithError As String, ByRef pbCancel As Boolean)

参数

pSource
IDTSRuntimeObject100

错误的源,导致事件的对象。

ErrorCode
Int32

一个用于标识错误消息的整数。 当与 source 参数结合使用时,此标识符应是唯一的,因此,sourceerrorCode 组合应是唯一的。 然而,仅仅是 errorCode 并不一定要求具有唯一性。

SubComponent
String

标识源中子模块的任意字符串。 例如,管道任务中的转换。

Description
String

消息的文本。

HelpFile
String

指向包含详细信息的帮助文件的路径。

HelpContext
Int32

帮助文件中该主题的标识符。

IDOfInterfaceWithError
String

导致错误的接口的 GUID 的文本表示形式。

pbCancel
Boolean

若要取消错误,则为 true;否则为 false。

属性

注解

有关详细信息,请参阅 IDTSEvents

适用于