User's Manual

CLASSES DESCRIPTION - CAEN RFID API Reference Manual 28
InventoryTag Method (Byte[], Int16, Int16, Int16)
Description:
A call to this method will execute a read cycle on each read point linked to the logical source.
Parameters:
Name
Description
Mask
A byte array representing the bitmask to apply.
MaskLength
A value representing the bit-oriented length of the bitmask.
Position
A value representing the first bit of ID where the match will start.
Flag
A bitmask representing the InventoryTag options.
Return value:
An array containing the CAENRFIDTag objects representing the tags read from the read points.
Syntax:
C# representation:
public CAENRFIDTag[] InventoryTag(
byte[] Mask,
short MaskLength,
short Position,
short Flag)
Java and Android representation:
public CAENRFIDTag[] InventoryTag(
byte[] Mask,
short MaskLength,
short Position,
short Flag)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_FlagInventoryTag (
CAENRFIDHandle handle,
char *SourceName,
char *Mask,
unsigned char MaskLength,
unsigned char Position,
unsigned char Flag,
CAENRFIDTag **Receive,
int *Size);