INotifyRead Interface |
Namespace: FileHelpers.Events
The INotifyRead type exposes the following members.
Name | Description | |
---|---|---|
![]() | AfterRead |
Method called by the engines after read a record from the source data.
|
![]() | BeforeRead |
Method called by the engines before fill the info of the record and
after read the source line.
|
private class SampleType: INotifyRead, INotifyWrite { .... public void AfterRead(AfterReadEventArgs e) { // Your Code Here } public void BeforeWrite(BeforeReadEventArgs e) { // Your Code Here } }