Click or drag to resize

INotifyRead Interface

Interface used to provide In record notification of read operations.

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

The INotifyRead type exposes the following members.

Methods
  NameDescription
Public methodAfterRead
Method called by the engines after read a record from the source data.
Public methodBeforeRead
Method called by the engines before fill the info of the record and after read the source line.
Top
Examples
private class SampleType: INotifyRead, INotifyWrite
{ ....

    public void AfterRead(AfterReadEventArgs e)
    {
        // Your Code Here
    }
    public void BeforeWrite(BeforeReadEventArgs e)
    {
        // Your Code Here
    }

}
See Also