Method Run
Run(Input)
Abstract execution method. When creating a new Action, this method implementation will hold all the processing code. Executed on a background thread if IsAsync is true.
Declaration
public abstract Output Run(Input input)
Parameters
Type | Name | Description |
---|---|---|
Input | input | Input data, of the given InputType |
Returns
Type | Description |
---|---|
Output | Output data, of the given OutputType |