User's Manual

CAEN RFID API Reference Manual
52
ReadTagData Method
Description:
This method can be used to read a portion of the user memory in a ISO18000-6B tag.
Parameters:
Name
Description
Tag
The CAENRFIDTag representing the tag to be read.
Address
The address where to start reading the data.
Length
The number of byte to be read.
Return value:
An array of bytes representing the data read from the tag.
Syntax:
C# representation:
public byte[] ReadTagData(
CAENRFIDTag Tag,
short Address,
short Length)
Java and Android representation:
public byte[] ReadTagData(
CAENRFIDTag Tag,
short Address,
short Length)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_ReadTagData(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
int Address,
int Length,
void *Data);