ModuleAPI C# Version Developer's Guide
Set Parameter
  
The Reader.ParamSet is the method for setting the parameter of reader. You can call this method at any time during the lifetime of the Reader class instance. Once the parameter was set, it will be effect in the whole life cycle of reader unless it is modified.

ParamSet Method

Set a reader's parameter
  
Method Signature
  
public void ParamSet(string key, object value)
  
Parameters
Parameter Description
key The name of the parameter.
value The value of the parameter.
   
Example
Set the Gen2Session of reader as Session 0.
  
rdr.ParamSet("Gen2Session", Session.Session0);