TextReaders
Namespace: MBrace.Core.Internals
Static members
Static member | Description |
ReadAllText(stream, encoding)
Signature: (stream:Stream * encoding:Encoding option) -> string
|
Reads all text from provided given stream with provided encoding. |
ReadLines(...)
Signature: (stream:Stream * disposeStream:bool option * encoding:Encoding option) -> seq<string>
|
Returns an enumeration of all text lines contained in stream. |
ReadLinesRanged(...)
Signature: (stream:Stream * beginPos:int64 * endPos:int64 * disposeStream:bool option * encoding:Encoding option) -> seq<string>
|
Returns an enumeration of all text lines contained in stream within a supplied byte range. |