StreamWriter.WriteLineAsync Method (String)

[ This article is for Windows Phone 8 developers. If you’re developing for Windows 10, see the latest documentation. ]

Writes a string followed by a line terminator asynchronously to the stream.

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

Syntax

Public Overrides Function WriteLineAsync ( _
    value As String _
) As Task
public override Task WriteLineAsync(
    string value
)

Parameters

  • value
    Type: System..::.String
    The string to write. If the value is nullNothingnullptra null reference (Nothing in Visual Basic), only a line terminator is written.

Return Value

Type: System.Threading.Tasks..::.Task
A task that represents the asynchronous write operation.

Exceptions

Exception Condition
ObjectDisposedException

The stream writer is disposed.

InvalidOperationException

The stream writer is currently in use by a previous write operation.

Remarks

The line terminator is defined by the TextWriter..::.NewLine property.

Version Information

Windows Phone OS

Supported in: 8.1, 8.0

See Also

Reference

StreamWriter Class

WriteLineAsync Overload

System.IO Namespace