StringWriter.WriteLineAsync メソッド

定義

データを、続いて行終端記号を非同期で文字列に書き込みます。

オーバーロード

WriteLineAsync(StringBuilder, CancellationToken)

文字列ビルダーの文字列形式を、続いて行終端記号を非同期で現在の文字列に書き込みます。

WriteLineAsync(Char)

文字を、続いて行終端記号を非同期で文字列に書き込みます。

WriteLineAsync(String)

文字列を、続いて行終端記号を非同期で現在の文字列を書き込みます。

WriteLineAsync(ReadOnlyMemory<Char>, CancellationToken)

文字のメモリ領域の文字列形式を、続いて行終端記号を非同期で現在の文字列に書き込みます。

WriteLineAsync(Char[], Int32, Int32)

文字列の部分配列を、続いて行終端記号を非同期で文字列に書き込みます。

WriteLineAsync(StringBuilder, CancellationToken)

ソース:
StringWriter.cs
ソース:
StringWriter.cs
ソース:
StringWriter.cs

文字列ビルダーの文字列形式を、続いて行終端記号を非同期で現在の文字列に書き込みます。

public override System.Threading.Tasks.Task WriteLineAsync (System.Text.StringBuilder? value, System.Threading.CancellationToken cancellationToken = default);
override this.WriteLineAsync : System.Text.StringBuilder * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (value As StringBuilder, Optional cancellationToken As CancellationToken = Nothing) As Task

パラメーター

value
StringBuilder

文字列に書き込む文字列ビルダー。

cancellationToken
CancellationToken

キャンセル要求を監視するためのトークン。 既定値は None です。

戻り値

非同期の書き込み操作を表すタスク。

例外

キャンセル トークンが取り消されました。 この例外は、返されたタスクに格納されます。

注釈

このメソッドは、メソッドの同期的な例外がスローできる非使用例外をすべて返すタスクに格納します。 返されたタスクに例外が格納されている場合、その例外はタスクの待機時にスローされます。 などの ArgumentException使用例外は、引き続き同期的にスローされます。 格納されている例外については、 によって WriteLine(StringBuilder)スローされる例外に関するページを参照してください。

適用対象

WriteLineAsync(Char)

ソース:
StringWriter.cs
ソース:
StringWriter.cs
ソース:
StringWriter.cs

文字を、続いて行終端記号を非同期で文字列に書き込みます。

public:
 override System::Threading::Tasks::Task ^ WriteLineAsync(char value);
public override System.Threading.Tasks.Task WriteLineAsync (char value);
[System.Runtime.InteropServices.ComVisible(false)]
public override System.Threading.Tasks.Task WriteLineAsync (char value);
override this.WriteLineAsync : char -> System.Threading.Tasks.Task
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.WriteLineAsync : char -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (value As Char) As Task

パラメーター

value
Char

文字列に書き込む文字。

戻り値

非同期の書き込み操作を表すタスク。

属性

例外

文字列ライターが破棄されています。

文字列ライターは現在、前の書き込み操作で使用中です。

次の例は、 メソッドを使用して文字を記述する方法を WriteLineAsync(Char) 示しています。

using System;
using System.Text;
using System.IO;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            WriteCharacters();
        }

        static async void WriteCharacters()
        {
            StringBuilder stringToWrite = new StringBuilder("Characters in StringBuilder");
            stringToWrite.AppendLine();

            using (StringWriter writer = new StringWriter(stringToWrite))
            {
                UnicodeEncoding ue = new UnicodeEncoding();
                char[] charsToAdd = ue.GetChars(ue.GetBytes("and chars to add"));
                foreach (char c in charsToAdd)
                {
                    await writer.WriteLineAsync(c);
                }
                Console.WriteLine(stringToWrite.ToString());
            }
        }
    }
}
// The example displays the following output:
//
// Characters in StringBuilder
// a
// n
// d
//
// c
// h
// a
// r
// s
//
// t
// o
//
// a
// d
// d
//
Imports System.IO
Imports System.Text

Module Module1

    Sub Main()
        WriteCharacters()
    End Sub

    Async Sub WriteCharacters()
        Dim stringToWrite As StringBuilder = New StringBuilder("Characters in StringBuilder")
        stringToWrite.AppendLine()

        Using writer As StringWriter = New StringWriter(stringToWrite)

            Dim ue As UnicodeEncoding = New UnicodeEncoding()
            Dim charsToAdd() = ue.GetChars(ue.GetBytes("and chars to add"))
            For Each c As Char In charsToAdd
                Await writer.WriteLineAsync(c)
            Next
            Console.WriteLine(stringToWrite.ToString())
        End Using
    End Sub
End Module
' The example displays the following output:
'
' Characters in StringBuilder
' a
' n
' d 
'
' c
' h
' a
' r
' s
' 
' t
' o
'
' a
' d
' d
'

注釈

行終端記号は、 プロパティによって NewLine 定義されます。

適用対象

WriteLineAsync(String)

ソース:
StringWriter.cs
ソース:
StringWriter.cs
ソース:
StringWriter.cs

文字列を、続いて行終端記号を非同期で現在の文字列を書き込みます。

public:
 override System::Threading::Tasks::Task ^ WriteLineAsync(System::String ^ value);
public override System.Threading.Tasks.Task WriteLineAsync (string value);
public override System.Threading.Tasks.Task WriteLineAsync (string? value);
[System.Runtime.InteropServices.ComVisible(false)]
public override System.Threading.Tasks.Task WriteLineAsync (string value);
override this.WriteLineAsync : string -> System.Threading.Tasks.Task
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.WriteLineAsync : string -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (value As String) As Task

パラメーター

value
String

書き込む文字列。 値が null の場合は、行終端記号だけが書き込まれます。

戻り値

非同期の書き込み操作を表すタスク。

属性

例外

文字列ライターが破棄されています。

文字列ライターは現在、前の書き込み操作で使用中です。

次の例は、 メソッドを使用して文字列を記述する方法を WriteLineAsync(String) 示しています。

using System;
using System.Text;
using System.IO;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            WriteCharacters();
        }

        static async void WriteCharacters()
        {
            StringBuilder stringToWrite = new StringBuilder("Characters in StringBuilder");
            stringToWrite.AppendLine();

            using (StringWriter writer = new StringWriter(stringToWrite))
            {
                await writer.WriteLineAsync("and add characters through StringWriter");
                Console.WriteLine(stringToWrite.ToString());
            }
        }
    }
}
// The example displays the following output:
//
// Characters in StringBuilder
// and add characters through StringWriter
//
Imports System.IO
Imports System.Text

Module Module1

    Sub Main()
        WriteCharacters()
    End Sub

    Async Sub WriteCharacters()
        Dim stringToWrite As StringBuilder = New StringBuilder("Characters in StringBuilder")
        stringToWrite.AppendLine()

        Using writer As StringWriter = New StringWriter(stringToWrite)
            Await writer.WriteLineAsync("and add characters through StringWriter")
            Console.WriteLine(stringToWrite.ToString())
        End Using
    End Sub
End Module
' The example displays the following output:
'
' Characters in StringBuilder
' and add characters through StringWriter
'

注釈

行終端記号は、 プロパティによって NewLine 定義されます。

適用対象

WriteLineAsync(ReadOnlyMemory<Char>, CancellationToken)

ソース:
StringWriter.cs
ソース:
StringWriter.cs
ソース:
StringWriter.cs

文字のメモリ領域の文字列形式を、続いて行終端記号を非同期で現在の文字列に書き込みます。

public override System.Threading.Tasks.Task WriteLineAsync (ReadOnlyMemory<char> buffer, System.Threading.CancellationToken cancellationToken = default);
override this.WriteLineAsync : ReadOnlyMemory<char> * System.Threading.CancellationToken -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (buffer As ReadOnlyMemory(Of Char), Optional cancellationToken As CancellationToken = Nothing) As Task

パラメーター

buffer
ReadOnlyMemory<Char>

文字列に書き込む文字のメモリ領域。

cancellationToken
CancellationToken

キャンセル要求を監視するためのトークン。 既定値は None です。

戻り値

非同期の書き込み操作を表すタスク。

例外

キャンセル トークンが取り消されました。 この例外は、返されたタスクに格納されます。

適用対象

WriteLineAsync(Char[], Int32, Int32)

ソース:
StringWriter.cs
ソース:
StringWriter.cs
ソース:
StringWriter.cs

文字列の部分配列を、続いて行終端記号を非同期で文字列に書き込みます。

public:
 override System::Threading::Tasks::Task ^ WriteLineAsync(cli::array <char> ^ buffer, int index, int count);
public override System.Threading.Tasks.Task WriteLineAsync (char[] buffer, int index, int count);
[System.Runtime.InteropServices.ComVisible(false)]
public override System.Threading.Tasks.Task WriteLineAsync (char[] buffer, int index, int count);
override this.WriteLineAsync : char[] * int * int -> System.Threading.Tasks.Task
[<System.Runtime.InteropServices.ComVisible(false)>]
override this.WriteLineAsync : char[] * int * int -> System.Threading.Tasks.Task
Public Overrides Function WriteLineAsync (buffer As Char(), index As Integer, count As Integer) As Task

パラメーター

buffer
Char[]

データの書き込み元の文字配列。

index
Int32

データの読み取りを開始する、バッファー内の位置。

count
Int32

書き込む文字の最大数。

戻り値

非同期の書き込み操作を表すタスク。

属性

例外

buffernullです。

indexcount を加算した値がバッファーの長さを超えています。

index または count が負の値です。

文字列ライターが破棄されています。

文字列ライターは現在、前の書き込み操作で使用中です。

次の例は、 メソッドを使用して文字を記述する方法を WriteLineAsync(Char[], Int32, Int32) 示しています。

using System;
using System.Text;
using System.IO;

namespace ConsoleApplication
{
    class Program
    {
        static void Main(string[] args)
        {
            WriteCharacters();
        }

        static async void WriteCharacters()
        {
            StringBuilder stringToWrite = new StringBuilder("Characters in StringBuilder");
            stringToWrite.AppendLine();

            using (StringWriter writer = new StringWriter(stringToWrite))
            {
                UnicodeEncoding ue = new UnicodeEncoding();
                char[] charsToAdd = ue.GetChars(ue.GetBytes("and chars to add"));

                await writer.WriteLineAsync(charsToAdd, 0, charsToAdd.Length);

                Console.WriteLine(stringToWrite.ToString());
            }
        }
    }
}
// The example displays the following output:
//
// Characters in StringBuilder
// and chars to add
//
Imports System.IO
Imports System.Text

Module Module1

    Sub Main()
        WriteCharacters()
    End Sub

    Async Sub WriteCharacters()
        Dim stringToWrite As StringBuilder = New StringBuilder("Characters in StringBuilder")
        stringToWrite.AppendLine()

        Using writer As StringWriter = New StringWriter(stringToWrite)

            Dim ue As UnicodeEncoding = New UnicodeEncoding()
            Dim charsToAdd() = ue.GetChars(ue.GetBytes("and chars to add"))

            Await writer.WriteLineAsync(charsToAdd, 0, charsToAdd.Length)

            Console.WriteLine(stringToWrite.ToString())
        End Using
    End Sub
End Module
' The example displays the following output:
'
' Characters in StringBuilder
' and chars to add
'

注釈

行終端記号は、 プロパティによって NewLine 定義されます。

適用対象