IsolatedStorageFileStream.Read 方法

定义

重载

Read(Byte[], Int32, Int32)

将字节从当前缓冲的 IsolatedStorageFileStream 对象复制到字节数组。

Read(Span<Byte>)

将字节从当前缓冲的 IsolatedStorageFileStream 对象复制到字节范围。

Read(Byte[], Int32, Int32)

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

将字节从当前缓冲的 IsolatedStorageFileStream 对象复制到字节数组。

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

参数

buffer
Byte[]

要写入数据的缓冲区。

offset
Int32

缓冲区中开始写入的偏移量。

count
Int32

最多读取的字节数。

返回

读入 buffer 中的总字节数。 如果当前可用的字节数没有请求的字节数那么多,则总字节数可能小于请求的字节数;如果已到达流的末尾,则为零。

注解

参数buffer可以是 类的Buffer实例,也可以是下列类型之一的数组:Byte、、SByteCharInt16UInt32Int32UInt16UInt64Int64Single或 。Double

如果读取操作成功,则流的当前位置将按读取的字节数提前。 如果发生异常,则流的当前位置保持不变。

方法 Readbuffer 参数视为字节块,而不考虑其实际类型。 同样, offsetcount 参数始终以字节为单位指定。 对于 buffer 字节数组以外的参数,这意味着元素索引或元素数必须乘以元素大小(以字节为单位)才能为 offsetcount形成正确的值。

Read仅当到达流的末尾时,方法才会返回零。 在所有其他情况下, Read 始终在返回之前从流中至少读取一个字节。 如果在调用 Read时对象中没有数据可用IsolatedStorageFileStream,则 该方法将阻止,直到至少可以返回一个字节的数据。

适用于

Read(Span<Byte>)

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

将字节从当前缓冲的 IsolatedStorageFileStream 对象复制到字节范围。

public:
 override int Read(Span<System::Byte> buffer);
public override int Read (Span<byte> buffer);
override this.Read : Span<byte> -> int
Public Overrides Function Read (buffer As Span(Of Byte)) As Integer

参数

buffer
Span<Byte>

要写入数据的缓冲区。

返回

读入 buffer 中的总字节数。 如果当前可用的字节数没有请求的字节数那么多,则总字节数可能小于请求的字节数;如果已到达流的末尾,则为零。

适用于