INotifyWrite Interface |
Namespace: FileHelpers.Events
The INotifyWrite type exposes the following members.
Name | Description | |
---|---|---|
![]() | AfterWrite |
Method called by the engines after write a record to the
destination stream.
|
![]() | BeforeWrite |
Method called by the engines before write a record to the
destination stream.
|
private class SampleType: INotifyRead, INotifyWrite { .... public void AfterRead(BeforeWriteEventArgs e) { // Your Code Here } public void BeforeWrite(AfterWriteEventArgs e) { // Your Code Here } }