Not supported. Reads a sequence of bytes from the current stream and advances the position within the stream by the number of bytes.

Namespace:  Microsoft.Rtc.Collaboration.AudioVideo
Assembly:  Microsoft.Rtc.Collaboration(in Microsoft.Rtc.Collaboration.dll)

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
)
Visual C++
public:
virtual 
int 
Read(
	
array<
unsigned char>^ 
buffer, 
	
int 
offset, 
	
int 
count
) 
override
JavaScript
function 
read(
buffer, 
offset, 
count);

Parameters

buffer
Type: array< Byte > [] () []
Not applicable.
offset
Type: Int32
Not applicable.
count
Type: Int32
Not applicable.

Return Value

Not applicable.

Exceptions

Exception Condition
NotSupportedException Thrown when this method is called.

See Also