User's Manual

CAEN RFID API Reference Manual
17
CAENRFIDException Class
The CAENRFIDException class defines the CAEN RFID exceptions.
getError Method
Description:
This method gets the error string associated to the exception.
Return value:
The string representing the error.
Syntax:
C# representation:
public string getError()
Java and Android representation:
public java.lang.String getError()
Remarks:
This function does not exist in C language, see § Error Handling pag. 8 for more information.
IDSTagData Class
This class represents data returned by tags based on IDS Chip SL900A.
In Java, Android and C# lanuguages this class is composed by methods while in C language is represented by a struct
(for more information see § Overview on SDK pag.8):
C representation:
typedef struct {
BOOL ADError_i;
unsigned int RangeLimit_i;
unsigned int SensorValue_i;
} CAENRFID_IDSTagData;
getADError Method
Description:
This method returns if an A/D error is raised.
Return value:
True if an A/D error occurs, false otherwise.
Syntax:
C# representation:
public bool ADError {
get;
}
Java and Android representation:
public boolean getADError()