Article Details
Id: | 19131 |
Product: | finPOWER Connect |
Type: | NEW |
Version: | 3.04.04 |
Opened: | 31/03/2022 |
Closed: | 04/04/2022 |
Released: | 09/06/2022 |
Job: | J028541 |
ISError; Added GetMessage function
A new function GetMessage has been added to the ISError class.
This makes it easier for C# scripts to use as parameterized properties are not supported in C# and don't show in intellisense.
For example:
// C# only sees the methods in Intermediate Language as get_PropertyWithAttribute
logPublishBatchItem.PublishError = finBL.Error.get_Message(true, true);
// New function
logPublishBatchItem.PublishError = finBL.Error.GetMessage(true, true);