Call BasicCard READ EEPROM command

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

Syntax

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