Create a new byte[] containing a copy of a portion of this view's data. NB: This method copies the underlying data.

Namespace: StreamBase.SB
Assembly: StreamBase.SB.Client (in StreamBase.SB.Client.dll) Version: 7.7.0.0

Syntax

         
 C#  Visual Basic  Visual C++ 
public byte[] CopyBytes(
	int off,
	int len
)
Public Function CopyBytes ( _
	off As Integer, _
	len As Integer _
) As Byte()
public:
array<unsigned char>^ CopyBytes(
	int off, 
	int len
)

Parameters

off
Int32
len
Int32

Return Value

The new byte array.

See Also