Method TryInvoke
- Namespace
- DocWright.Reporting.Expressions
- Assembly
- DocWright.Reporting.dll
TryInvoke(string, IReadOnlyList<object?>, out object?)
Invokes a member of the report's custom code.
public abstract bool TryInvoke(string memberName, IReadOnlyList<object?> arguments, out object? result)
Parameters
memberNamestringThe member as written after
Code.—SalesVariancePct, orInstance.Methodfor a class instance.argumentsIReadOnlyList<object>The evaluated arguments.
resultobjectThe result.
Returns
- bool
False when the code has no such member, which is reported as
DXP9106.