Click or drag to resize
FileStreamRead Method
Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes read.

Namespace: CMS.FileSystemStorage
Assembly: CMS.FileSystemStorage (in CMS.FileSystemStorage.dll) Version: 10.0.0
Syntax
C#
public override int Read(
	byte[] array,
	int offset,
	int count
)

Parameters

array
Type: SystemByte
The buffer to write the data into.
offset
Type: SystemInt32
The byte offset in array at which to begin writing data from the stream.
count
Type: SystemInt32
The maximum number of bytes to read.

Return Value

Type: Int32
See Also