Compartir a través de


EventCollector.Abort Method

Discards the current event batch and all event data associated with it.

Espacio de nombres: Microsoft.SqlServer.NotificationServices
Ensamblado: Microsoft.SqlServer.NotificationServices (in microsoft.sqlserver.notificationservices.dll)

Sintaxis

'Declaración
Public Sub Abort
public void Abort ()
public:
virtual void Abort () sealed
public final void Abort ()
public final function Abort ()

Notas

An event provider calls the Write method to submit an event (encapsulated as an Event) to an EventCollector. The EventCollector gathers all submitted events into an event batch. The event batch is submitted to the Notification Services application database for processing when the event provider calls the Commit method.

The EventCollector creates a new event batch when the event provider first calls Write, and then again on the first Write call after an Abort or Commit call.

An event provider can force the current batch to be discarded by calling the Abort method.

Ejemplo

The following examples show how to use the Abort method to discard an event batch.

These examples use the Microsoft.SqlServer.NotificationServices namespace.

Try
    'Add event batch processing code here.
Catch e As System.Exception
    'Discard the event batch if there is an error.
    myEventCollector.Abort()
End Try
try
{
    //Add event batch processing code here.
}
catch (System.Exception e)
{
    //Discard the event batch if there is an error.
    myEventCollector.Abort();
}

Seguridad para subprocesos

Any public static (Shared in Microsoft Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.

Plataformas

Plataformas de desarrollo

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Plataformas de destino

Para obtener una lista de las plataformas compatibles, vea Requisitos de hardware y software para instalar SQL Server 2005.

Vea también

Referencia

EventCollector Class
EventCollector Members
Microsoft.SqlServer.NotificationServices Namespace