StringReader.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 string asynchronously and returns them as a single string.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)

Syntax

Public Overrides Function ReadToEndAsync As Task(Of String)
public override Task<string> ReadToEndAsync()

Return Value

Type: System.Threading.Tasks..::.Task<(Of <(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 string.

Exceptions

Exception Condition
ArgumentOutOfRangeException

The number of characters is larger than MaxValue.

ObjectDisposedException

The string reader has been disposed.

InvalidOperationException

The reader is currently in use by a previous read operation.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

StringReader Class

System.IO Namespace