TextReader.ReadToEnd Method
[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]
Reads all characters from the current position to the end of the TextReader and returns them as one string.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.StringA string containing all characters from the current position to the end of the TextReader.
| Exception | Condition |
|---|---|
| IOException | An I/O error occurs. |
| ObjectDisposedException | The TextReader is closed. |
| OutOfMemoryException | There is insufficient memory to allocate a buffer for the returned string. |
| ArgumentOutOfRangeException | The number of characters in the next line is larger than MaxValue |
If the current method throws an OutOfMemoryException, the reader's position in the underlying Stream is advanced by the number of characters the method was able to read, but the characters already read into the internal ReadToEnd buffer are discarded. Since the position of the reader in the stream cannot be changed, the characters already read are unrecoverable, and can be accessed only by reinitializing the TextReader. If the initial position within the stream is unknown or the stream does not support seeking, the underlying Stream also needs to be reinitialized.
To avoid such a situation and produce robust code you should use the Read method and store the read characters in a preallocated buffer.