XmlWriter.WriteBase64Async(Byte[], Int32, Int32) 方法

定义

将指定的二进制字节异步编码为 Base64 并写出结果文本。

public:
 virtual System::Threading::Tasks::Task ^ WriteBase64Async(cli::array <System::Byte> ^ buffer, int index, int count);
public virtual System.Threading.Tasks.Task WriteBase64Async (byte[] buffer, int index, int count);
abstract member WriteBase64Async : byte[] * int * int -> System.Threading.Tasks.Task
override this.WriteBase64Async : byte[] * int * int -> System.Threading.Tasks.Task
Public Overridable Function WriteBase64Async (buffer As Byte(), index As Integer, count As Integer) As Task

参数

buffer
Byte[]

要进行编码的字节数组。

index
Int32

缓冲区中指示要写入字节的起始位置的位置。

count
Int32

要写入的字节数。

返回

Task

表示 WriteBase64 异步操作的任务。

例外

在上一次异步操作完成之前调用了 XmlWriter 方法。 在此情况下,会引发 InvalidOperationException 并显示消息“异步操作已在进行中。”

  • 或 -

调用了 XmlWriter 异步方法,但未将 Async 标志设置为 true。 在这种情况下,将引发 InvalidOperationException 并显示消息“如果要使用异步方法,请将 XmlWriterSettings.Async 设置为 true”。

注解

这是具有相同功能的异步版本 WriteBase64。 若要使用此方法,必须将标志设置为 Async true

适用于

另请参阅