StringReader.ReadBlockAsync 方法

定义

重载

ReadBlockAsync(Memory<Char>, CancellationToken)

从当前位置开始异步读取输入字符串中的所有字符,并将当前位置移到输入字符串的末尾。

ReadBlockAsync(Char[], Int32, Int32)

异步从当前字符串中读取指定数目的字符并从指定索引开始将该数据写入缓冲区。

ReadBlockAsync(Memory<Char>, CancellationToken)

Source:
StringReader.cs
Source:
StringReader.cs
Source:
StringReader.cs

从当前位置开始异步读取输入字符串中的所有字符,并将当前位置移到输入字符串的末尾。

public override System.Threading.Tasks.ValueTask<int> ReadBlockAsync (Memory<char> buffer, System.Threading.CancellationToken cancellationToken = default);
override this.ReadBlockAsync : Memory<char> * System.Threading.CancellationToken -> System.Threading.Tasks.ValueTask<int>
Public Overrides Function ReadBlockAsync (buffer As Memory(Of Char), Optional cancellationToken As CancellationToken = Nothing) As ValueTask(Of Integer)

参数

buffer
Memory<Char>

此方法返回时,包含从当前源中读取的字符。 如果读取的字符总数为零,则范围保持不变。

cancellationToken
CancellationToken

要监视取消请求的标记。 默认值为 None

返回

表示异步读取操作的任务。 TResult 参数的值包含读入缓冲区的总字符数。

例外

取消令牌已取消。 此异常存储在返回的任务中。

注解

ReadBlockAsync(Memory<Char>, CancellationToken) 异步调用 ReadBlock(Span<Char>) ,后者又直接调用 Read(Span<Char>)

适用于

ReadBlockAsync(Char[], Int32, Int32)

Source:
StringReader.cs
Source:
StringReader.cs
Source:
StringReader.cs

异步从当前字符串中读取指定数目的字符并从指定索引开始将该数据写入缓冲区。

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

参数

buffer
Char[]

当此方法返回时,包含指定的字符数组,此数组中 index 和 (index + count - 1) 之间的值被从当前源中读取的字符所替换。

index
Int32

buffer 中开始写入的位置。

count
Int32

最多读取的字符数。 如果在写入指定数目的字符到缓冲区之前,就已经达到字符串的末尾,则方法返回。

返回

表示异步读取操作的任务。 TResult 参数的值包含读入缓冲区的总字节数。 如果当前可用字节数少于所请求的字节数,则该结果值可能小于所请求的字节数,或者如果已到达字符串的末尾时,则为 0(零)。

属性

例外

buffernull

indexcount 为负数。

indexcount 的总和大于缓冲区长度。

字符串读取器已被释放。

以前的读取操作当前正在使用读取器。

注解

在读取参数指定的 count 字符数或到达字符串的末尾之前,任务不会完成。

适用于