IDTSInfoEvents.FireInformation Method

Definition

Fires an informational event.

public:
 void FireInformation(int informationCode, System::String ^ subComponent, System::String ^ description, System::String ^ helpFile, int helpContext, bool % fireAgain);
public void FireInformation (int informationCode, string subComponent, string description, string helpFile, int helpContext, ref bool fireAgain);
abstract member FireInformation : int * string * string * string * int * bool -> unit
Public Sub FireInformation (informationCode As Integer, subComponent As String, description As String, helpFile As String, helpContext As Integer, ByRef fireAgain As Boolean)

Parameters

informationCode
Int32

An Integer that identifies the information message.

subComponent
String

An arbitrary string that identifies the sub-module within a source:for example, the transformation in a Pipeline task.

description
String

Text of the message.

helpFile
String

The path to the Help file that contains detailed information.

helpContext
Int32

Identifier of the topic in the Help file.

fireAgain
Boolean

A Boolean that indicates whether the task should continue executing. A value of true indicates that the error should cause the task to cancel. A value of false indicates that the error should not stop the task from executing, but the task should continue.

Remarks

Provides information about a non-problematic issue.

Applies to