Add some data to our buffer.

Namespace: Org.BouncyCastle.Crypto.Tls
Assembly: ITextSharp (in ITextSharp.dll) Version: 4.1.6.0

Syntax

C#
public void AddData(
	byte[] data,
	int offset,
	int len
)
Visual Basic
Public Sub AddData ( _
	data As Byte(), _
	offset As Integer, _
	len As Integer _
)
Visual C++
public:
void AddData(
	array<unsigned char>^ data, 
	int offset, 
	int len
)

Parameters

data
Type: array<System..::..Byte>[]()[][]
A byte-array to read data from.
offset
Type: System..::..Int32
How many bytes to skip at the beginning of the array.
len
Type: System..::..Int32
How many bytes to read from the array.

See Also