Call BasicCard READ EEPROM (24 bit address variant) command

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

Syntax

C#
protected virtual byte[] CmdReadEeprom24(
	int startAddress,
	int length
)
Visual Basic
Protected Overridable Function CmdReadEeprom24 ( 
	startAddress As Integer,
	length As Integer
) As Byte()
Visual C++
protected:
virtual array<unsigned char>^ CmdReadEeprom24(
	int startAddress, 
	int length
)
F#
abstract CmdReadEeprom24 : 
        startAddress : int * 
        length : int -> byte[] 
override CmdReadEeprom24 : 
        startAddress : int * 
        length : int -> byte[] 

Parameters

startAddress
Type: System..::..Int32
Start address for write operation.
length
Type: System..::..Int32
Number of bytes to read.

Return Value

Type: array<Byte>[]()[][]
Bytes read from card.

See Also