Execute Method (BLTComponent)
- Last UpdatedApr 08, 2026
- 1 minute read
Executes the main processing routine of the BLTComponent.
public:
void Execute(
array<byte>^% Params,
array<byte>^% Results,
int Locale
)
Parameters
- Params
- The byte array containing a specially formatted dataset binary serialized.
- Results
- The tabular results serialized into a byte array.
- Locale
- The client's locale identifier.
It calls the BLTProcessor.Process which must be implemented in a class that derives from BLTProcessor. This method is invoked automatically by the Business Logic Tier (BLT) infrastructure when a client calls a BLTComponent. It should not need to call this method directly.