IsolatedStorageFileStream.Write 方法

定义

重载

Write(ReadOnlySpan<Byte>)

使用从缓冲区(由只读字节范围组成)读取的数据将字节块写入独立存储文件流对象。

Write(Byte[], Int32, Int32)

使用从缓冲区(由字节数组组成)读取的数据将字节块写入独立存储文件流对象。

Write(ReadOnlySpan<Byte>)

Source:
IsolatedStorageFileStream.cs
Source:
IsolatedStorageFileStream.cs
Source:
IsolatedStorageFileStream.cs

使用从缓冲区(由只读字节范围组成)读取的数据将字节块写入独立存储文件流对象。

public:
 override void Write(ReadOnlySpan<System::Byte> buffer);
public override void Write (ReadOnlySpan<byte> buffer);
override this.Write : ReadOnlySpan<byte> -> unit
Public Overrides Sub Write (buffer As ReadOnlySpan(Of Byte))

参数

buffer
ReadOnlySpan<Byte>

要从中将字节复制到当前独立存储文件流的只读字节范围。

适用于

Write(Byte[], Int32, Int32)

Source:
IsolatedStorageFileStream.cs
Source:
IsolatedStorageFileStream.cs
Source:
IsolatedStorageFileStream.cs

使用从缓冲区(由字节数组组成)读取的数据将字节块写入独立存储文件流对象。

public:
 override void Write(cli::array <System::Byte> ^ buffer, int offset, int count);
public override void Write (byte[] buffer, int offset, int count);
override this.Write : byte[] * int * int -> unit
Public Overrides Sub Write (buffer As Byte(), offset As Integer, count As Integer)

参数

buffer
Byte[]

要从中将字节复制到当前独立存储文件流的字节数组。

offset
Int32

buffer 中的字节偏移量,从此处开始。

count
Int32

最多写入的字节数。

例外

写入尝试次数超过了 IsolatedStorageFileStream 对象的配额。

注解

如果写入操作成功,则对象的当前位置 IsolatedStorageFileStream 将按写入的字节数提前。 如果发生异常,则对象的当前位置 IsolatedStorageFileStream 保持不变。

适用于