Title here
Summary here
Reads data from a text file. Each line is read as a string and converted into an object by the ParseLineFunc. A line is defined as a sequence of characters followed by a line feed("\n"), a carriage return ("\r"), or a carriage return immediately followed by a line feed("\r\n").
Name | Description |
---|---|
TOutput | Type of outgoing data. |
Type | Name | Description |
---|---|---|
string | uri | The source of the file. This can be a filename or a web url.Uri |
Type | Name | Description |
---|---|---|
string | uri | The source of the file. This can be a filename or a web url.Uri |
Func<string, int, TOutput> | parseLineFunc |
This Function is called for every line in the source document. The input is the current read line as as string and the current progress count. The return value is the new row that is send into the connected components.
Type | Description |
---|---|
Func<string, int, TOutput> |