This topic has not yet been rated - Rate this topic

TextReader.ReadLineAsync Method

May 02, 2013

Reads a line of characters asynchronously and returns the data as a string.

Namespace:  System.IO
Assembly:  mscorlib (in mscorlib.dll)
'Declaration
Public Overridable Function ReadLineAsync As Task(Of String)

Return Value

Type: System.Threading.Tasks.Task(Of String)
A task that represents the asynchronous read operation. The value of the TResult parameter contains the next line from the text reader, or is Nothing if all of the characters have been read.
ExceptionCondition
ArgumentOutOfRangeException

The number of characters in the next line is larger than MaxValue.

ObjectDisposedException

The text reader has been disposed.

InvalidOperationException

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

Windows Phone OS

Supported in: 8.0

Did you find this helpful?
(1500 characters remaining)
© 2013 Microsoft. All rights reserved.