Class ActionOut<Output>
Abstract class for Out Actions.
Inherit from this class to create an Action that returns some data.
Can be used to create a RuleEngine Actions (starting points).
Inheritance
System.Object
    
    ActionOut<Output>
      
      
      
      
      
  Inherited Members
      System.Object.ToString()
    
    
      System.Object.Equals(System.Object)
    
    
      System.Object.Equals(System.Object, System.Object)
    
    
      System.Object.ReferenceEquals(System.Object, System.Object)
    
    
      System.Object.GetHashCode()
    
    
      System.Object.GetType()
    
    
      System.Object.MemberwiseClone()
    
  Namespace: PiXYZ.Tools
Assembly: cs.temp.dll.dll
Syntax
public abstract class ActionOut<Output> : ActionBase
  Type Parameters
| Name | Description | 
|---|---|
| Output | Specifies what kind of data the actions outputs.  | 
      
Properties
inputType
Input type. This is always null in the case of a Out-only Action.
Declaration
public override Type inputType { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Type | 
Overrides
outputType
Output type. Specifies what kind of data the actions outputs.
Declaration
public override Type outputType { get; }
  Property Value
| Type | Description | 
|---|---|
| System.Type | 
Overrides
Methods
run()
Abstract execution method. When creating a new action, this method implementation will hold all the processing code.
Declaration
public abstract Output run()
  Returns
| Type | Description | 
|---|---|
| Output | Output data, of the given outputType  |