[This topic is pre-release documentation and is subject to change in future releases. Blank topics are included as placeholders.]

Read a block of bytes from the stream.

Namespace: Microsoft.WebSolutionsPlatform.Event
Assembly: PubSubMgr (PubSubMgr)

Syntax

Visual Basic (Declaration)
Public Overrides Function Read ( _
	buffer As Byte(), _
	offset As Integer, _
	count As Integer _
) As Integer
C#
public override int Read (
	byte[] buffer,
	int offset,
	int count
)
C++
public:
virtual int Read (
	array<unsigned char>^ buffer, 
	int offset, 
	int count
) override

Parameters

buffer ()
Destination buffer of bytes
offset (System.Int32)
Starting position in destination buffer
count (System.Int32)
Number of bytes to copy

Return Value