IDTSComponentMetaData100.FireCustomEvent Method
SQL Server 2008
Raises a custom event defined by a component.
Assembly: Microsoft.SqlServer.DTSPipelineWrap (in Microsoft.SqlServer.DTSPipelineWrap.dll)
void FireCustomEvent( string EventName, string EventText, ref Object[] ppsaArguments, string SubComponent, out bool pbFireAgain )
Parameters
- EventName
- Type: System.String
The name of the custom event.
- EventText
- Type: System.String
The text that describes the event.
- ppsaArguments
- Type: System.Object[]%
The array of arguments that match the arguments defined when the custom event is defined.
- SubComponent
- Type: System.String
The name of the component that raises the custom event.
- pbFireAgain
- Type: System.Boolean%
Specifies whether the event should be raised again in the future.
The FireCustomEvent method is used to raise a custom event that is defined by the component. The EventName and ppsaArguments parameters must match the name and parameter definitions of the custom event as they were defined when created by the component during the RegisterEvents method.