ModuleAPI C# Version Developer's Guide
Get Parameter
 
The Reader.ParamGet is the method for getting the parameter of reader. You can call this method at any time during the lifetime of the Reader class instance.

ParamGet Method

Get a reader's parameter
  
Method Signature
  
public object ParamGet(string key)
  
Parameters
Parameter Description
Key The name of the parameter
   
Return Value
A value of object type, users should cast the return object to the right parameter type, assuming that rdr is an instance of the Reader class.
   
Example
Get firmware version of reader, rdr is the instance of Reader class.
  
string fvir =  (string) rdr.ParamGet(“SoftwareVersion”);