IDTSEvents100.OnInformation 方法

定义

需要任务提供信息时调用。

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

参数

pSource
IDTSRuntimeObject100

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

InformationCode
Int32

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

SubComponent
String

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

Description
String

消息的文本。

HelpFile
String

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

HelpContext
Int32

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

IDOfInterfaceWithError
String

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

pbFireAgain
Boolean

指示此操作应继续触发或停止触发的布尔值。 true 值指示它应继续触发。

属性

注解

与警告相比,信息性事件传达不一定表示任何数据丢失或其他原因的重要信息。 但是,它足以保证超过日志条目。

有关详细信息,请参阅 IDTSEvents

适用于