Constructs ResponseAPDU from byte array.

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

Syntax

C#
public ResponseApdu(
	byte[] response
)
Visual Basic
Public Sub New ( 
	response As Byte()
)
Visual C++
public:
ResponseApdu(
	array<unsigned char>^ response
)
F#
new : 
        response : byte[] -> ResponseApdu

Parameters

response
Type: array<System..::..Byte>[]()[][]
Byte array containing the response bytes.

Exceptions

ExceptionCondition
BasicCard.GenericCards..::..CardExceptionIf response is less than 2 bytes (SW1SW2 missing).

See Also