Click or drag to resize

ImportBaseOnNextFile Method

Called when a new file is processed.

Namespace: ArthaChitra.Model.IO
Assembly: ArthaChitra.Core (in ArthaChitra.Core.dll) Version: 2.0.3.0
Syntax
C#
public abstract Task<bool> OnNextFile(
	string filename
)

Parameters

filename  String
File name

Return Value

TaskBoolean
True if user wants to read the file else false. If true the file will be read using StreamReader. If false, the iterate to the next file, if any.
See Also