Compartir a través de


IDTSEvents100.OnCustomEvent Método

Esta API admite la infraestructura de SQL Server 2012 y no está prevista su utilización directa desde el código.

Called by tasks to raise custom task-defined events.

Espacio de nombres:  Microsoft.SqlServer.Dts.Runtime.Wrapper
Ensamblado:  Microsoft.SqlServer.DTSRuntimeWrap (en Microsoft.SqlServer.DTSRuntimeWrap.dll)

Sintaxis

'Declaración
Sub OnCustomEvent ( _
    pTaskHost As IDTSTaskHost100, _
    EventName As String, _
    EventText As String, _
    ByRef ppsaArguments As Object(), _
    SubComponent As String, _
    <OutAttribute> ByRef pbFireAgain As Boolean _
)
'Uso
Dim instance As IDTSEvents100 
Dim pTaskHost As IDTSTaskHost100 
Dim EventName As String 
Dim EventText As String 
Dim ppsaArguments As Object()
Dim SubComponent As String 
Dim pbFireAgain As Boolean

instance.OnCustomEvent(pTaskHost, EventName, _
    EventText, ppsaArguments, SubComponent, _
    pbFireAgain)
void OnCustomEvent(
    IDTSTaskHost100 pTaskHost,
    string EventName,
    string EventText,
    ref Object[] ppsaArguments,
    string SubComponent,
    out bool pbFireAgain
)
void OnCustomEvent(
    [InAttribute] IDTSTaskHost100^ pTaskHost, 
    [InAttribute] String^ EventName, 
    [InAttribute] String^ EventText, 
    [InAttribute] array<Object^>^% ppsaArguments, 
    [InAttribute] String^ SubComponent, 
    [InAttribute] [OutAttribute] bool% pbFireAgain
)
abstract OnCustomEvent : 
        pTaskHost:IDTSTaskHost100 * 
        EventName:string * 
        EventText:string * 
        ppsaArguments:Object[] byref * 
        SubComponent:string * 
        pbFireAgain:bool byref -> unit
function OnCustomEvent(
    pTaskHost : IDTSTaskHost100, 
    EventName : String, 
    EventText : String, 
    ppsaArguments : Object[], 
    SubComponent : String, 
    pbFireAgain : boolean
)

Parámetros

  • EventText
    Tipo: System.String
    The text that describes the event.
  • ppsaArguments
    Tipo: array<System.Object[]%
    An array of arguments to pass to the event.
  • SubComponent
    Tipo: System.String
    A String that contains more detail about the event source.
  • pbFireAgain
    Tipo: System.Boolean%
    A Boolean that indicates this should continue firing or stop firing. A value of true indicates that it should continue firing.

Comentarios

For more information, see IDTSEvents.

Vea también

Referencia

IDTSEvents100 Interfaz

Espacio de nombres Microsoft.SqlServer.Dts.Runtime.Wrapper