Share via


IDTSComponentMetaData100.FireInformation Method

Definition

public:
 void FireInformation(int InformationCode, System::String ^ SubComponent, System::String ^ Description, System::String ^ HelpFile, int HelpContext, [Runtime::InteropServices::Out] bool % pbFireAgain);
[System.Runtime.InteropServices.DispId(128)]
public void FireInformation (int InformationCode, string SubComponent, string Description, string HelpFile, int HelpContext, out bool pbFireAgain);
[<System.Runtime.InteropServices.DispId(128)>]
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 pbFireAgain As Boolean)

Parameters

InformationCode
Int32
SubComponent
String
Description
String
HelpFile
String
HelpContext
Int32
pbFireAgain
Boolean
Attributes

Remarks

The OnInformation event should only be raised during component execution since the information is not visibly captured during component design.

The pbFireAgain parameter is set by the runtime and indicates whether any clients are listening to the event. Components store the value of this parameter locally and should evaluate its value before raising the event again. If the value of the pbFireAgain parameter is false, the event should not be raised.

Applies to