NotifyAfter property

Specifies the number of rows to be processed before generating a notification event.

Syntax
Visual Basic
Public Property NotifyAfter As Integer
C#
public int NotifyAfter { get; set; }
Property value

An integer representing the number of rows to be processed before generating a notification event, or zero is if the property has not been set.

Remarks

Changes made to NotifyAfter, while executing WriteToServer, do not take effect until after the next notification.

Setting it less than zero is an error.

The value of NotifyAfter and BulkCopyTimeOut are mutually exclusive, so the event can fire even if no rows have been sent to the database or committed.

See also