Append bytes to this apdu (IDATA).

Namespace: BasicCard.ProcessorCards
Assembly: BasicCard (in BasicCard.dll) Version: 2.5.2.0 (2.5.2.0)

Syntax

C#
public virtual void Append(
	byte[] values,
	int startpos,
	int len
)
Visual Basic
Public Overridable Sub Append ( 
	values As Byte(),
	startpos As Integer,
	len As Integer
)
Visual C++
public:
virtual void Append(
	array<unsigned char>^ values, 
	int startpos, 
	int len
)
F#
abstract Append : 
        values : byte[] * 
        startpos : int * 
        len : int -> unit 
override Append : 
        values : byte[] * 
        startpos : int * 
        len : int -> unit 

Parameters

values
Type: array<System..::..Byte>[]()[][]
Bytes to append.
startpos
Type: System..::..Int32
Start position within values.
len
Type: System..::..Int32
Number of bytes to append.

Exceptions

ExceptionCondition
System..::..IndexOutOfRangeExceptionIf capacity exceeded or index out of range.

See Also