Click or drag to resize

INotifyWrite Interface

Interface used to provide In record notification of write operations.

Namespace:  FileHelpers.Events
Assembly:  FileHelpers (in FileHelpers.dll) Version: 3.2.6
Syntax
public interface INotifyWrite

The INotifyWrite type exposes the following members.

Methods
  NameDescription
Public methodAfterWrite
Method called by the engines after write a record to the destination stream.
Public methodBeforeWrite
Method called by the engines before write a record to the destination stream.
Top
Examples
private class SampleType: INotifyRead, INotifyWrite
{ ....

    public void AfterRead(BeforeWriteEventArgs e)
    {
        // Your Code Here
    }
    public void BeforeWrite(AfterWriteEventArgs e)
    {
        // Your Code Here
    }

}
See Also