TextReader.ReadToEndAsync 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 text reader asynchronously and returns them as one string.
Assembly: mscorlib (in mscorlib.dll)
Return Value
Type: System.Threading.Tasks.Task<String>A task that represents the asynchronous read operation. The value of the TResult parameter contains a string with the characters from the current position to the end of the text reader.
| Exception | Condition |
|---|---|
| ArgumentOutOfRangeException | The number of characters is larger than MaxValue. |
| ObjectDisposedException | The text reader has been disposed. |
| InvalidOperationException | The reader is currently in use by a previous read operation. |
Show: