User's Manual

CAEN RFID API Reference Manual
20
BlockWriteTagData Method
BlockWriteTagData Method (CAENRFIDTag, Int16, Int16, Byte[])
Description:
This method can be used to write a portion of the user memory in a ISO18000-6B tag using blocks of four bytes for
each command.
Parameters:
Name
Description
Tag
The CAENRFIDTag representing the tag to be written.
Address
The address where to start writing the data.
Length
The number of byte to be written.
Data
The data to be written into the tag's user memory.
Syntax:
C# representation:
public void BlockWriteTagData(
CAENRFIDTag Tag,
short Address,
short Length,
byte[] Data)
Java and Android representation:
public void BlockWriteTagData(
CAENRFIDTag Tag,
short Address,
short Length,
byte[] Data)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_BlockWriteTagData(
CAENRFIDHandle handle,
CAENRFIDTag *Tag,
int Address,
int Length,
void *Data);