Windows apps
Collapse the table of content
Expand the table of content
Information
The topic you requested is included in another documentation set. For convenience, it's displayed below. Choose Switch to see the topic in its original location.

PrintQueueStream::Read Method (array<Byte>^, Int32, Int32)

 

Reads a sequence of bytes from the stream and advances the read/write position in the stream by the number of bytes that were read.

Namespace:   System.Printing
Assembly:  System.Printing (in System.Printing.dll)

public:
[SecurityCriticalAttribute]
virtual int Read(
	array<unsigned char>^ buffer,
	int offset,
	int count
) override

Parameters

buffer
Type: array<System::Byte>^

An array of bytes.

offset
Type: System::Int32

The zero-based byte offset in the buffer where you want to begin storing the data that is read from the stream.

count
Type: System::Int32

The maximum number of bytes to be read from the stream.

Return Value

Type: System::Int32

An Int32 that holds the total number of bytes that are read into the buffer.

The return value can be less than the number of requested bytes if that many bytes are not currently available; or the number can be zero (0) if the read/write position is at the end of the stream.

When this method returns, buffer contains the specified byte array and the values between offset and (offset + count - 1) are replaced by the bytes that are read from the source.

.NET Framework
Available since 3.0
Return to top
Show:
© 2017 Microsoft