Parameters Property
- Last UpdatedApr 08, 2026
- 1 minute read
Gets or sets the parameters supplied by the Business Logic Tier (BLT) client.
public BLTParameterList Parameters {get; set;}
public:
property BLTParameterList^ Parameters {
BLTParameterList^ get();
void set ( BLTParameterList^ value);
}
This list contains one BLTParameter object for each expected parameter. The constructor of the class that derives from the BLTProcessor should initialize this list. It is used to provide syntax information to the client and to validate the passed-in parameters. When the client calls the BLTComponent and the Process is executed, the BLTParameter.Value is populated with the contents of each parameter. Output parameters may be set by the Process and are returned to the client.