Method Run
Run(object)
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 override object Run(object input)
Parameters
Type | Name | Description |
---|---|---|
object | input | Input data, of the given InputType |
Returns
Type | Description |
---|---|
object | Output data, of the given OutputType |