Assembly: ForeNet;
Namespace: Prognoz.Platform.Interop.ForeNet;
The IForeNETMethod interface is used to work with the custom .NET method.
IForeNETMethod
Custom method is a procedure or function which calculates or converts data in accordance with user-defined algorithm. Custom calculation methods can be applied in:
Calculated series calculation methods in theTime Series Analysis tool.
Model calculation methods in theModeling and Forecasting tool.
Function wizard in the Reports tool.
Formula editor in the Calculation Algorithms tool.
Depending on the place where the custom method is applied, the signature of procedures or functions may vary. To pass data series to procedure or function, use parameters of the ITimeSeries type.
Syntax example of custom method
Property name | Brief description | |
Namespace_ | The Namespace_ property determines the namespace where the .NET method is implemented. | |
Params | The Params property returns parameters collection of the custom .NET method. |
Property name | Brief description | |
Assembly | The Assembly property determines an identifier of the module that contains the custom method. | |
Category | The Category property determines a category of the custom method. | |
Description | The Description property determines description of the custom method. | |
Key | The Key property returns the custom method key. | |
Method | The Method property determines a unique identifier of the custom method. | |
Name | The Name property determines a name of the custom method. | |
ResultType | The ResultType property determines a type of the result data that is returned by the custom method. | |
Tag | The Tag property determines any data linked to the method. |
Имя метода | Brief description | |
Bind | The Bind method initializes the custom method. | |
Invoke | The Invoke method executes custom method. |
See also: