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

このブール値が発射を続けるか、発射停止すべきかを示します。 真の値は、発射を続けるべきであることを示します。

属性

注釈

警告と比べて、情報イベントは必ずしもデータ損失やその他の懸念事項を示すものではない重要な情報を伝えます。 しかし、ログ記録以上の価値があるほど重要な存在です。

詳細については、IDTSEventsを参照してください。

適用対象