User's Manual

CAEN RFID API Reference Manual
39
GroupSelUnsel Method
Description:
This method can be used to send a Group Select/Unselect command to the tag (see ISO18000-6B protocol
specification).
Parameters:
Name
Description
Code
The operation code as defined by the protocol.
Address
The Address from which start the comparison.
BitMask
The bit mask to use.
Data
The data to be compared.
Return value:
The selected tag.
Syntax:
C# representation:
public CAENRFIDTag GroupSelUnsel(
CAENRFIDSelUnselOptions Code,
short Address,
short BitMask,
byte[] Data)
JAVA representation:
public CAENRFIDTag GroupSelUnsel(
CAENRFIDSelUnselOptions Code,
short Address,
short BitMask,
byte[] Data)
throws CAENRFIDException
C representation:
CAENRFIDErrorCodes CAENRFID_GroupSelUnsel(
CAENRFIDHandle handle,
char *SourceName,
CAENRFID_SelUnsel_Op Code,
int Address,
int BitMask,
void *Data,
CAENRFIDTag *Tag);