ITaskActivity Interface
Definition
Important
Some information relates to prerelease product that may be substantially modified before it’s released. Microsoft makes no warranties, express or implied, with respect to the information provided here.
Common interface for task activity implementations.
public interface ITaskActivity
type ITaskActivity = interface
Public Interface ITaskActivity
- Derived
Remarks
Users should not implement activities using this interface, directly. Instead, TaskActivity<TInput,TOutput> should be used to implement orchestration activities.
Properties
InputType |
Gets the type of the input parameter that this activity accepts. |
OutputType |
Gets the type of the return value that this activity produces. |
Methods
RunAsync(TaskActivityContext, Object) |
Invokes the task activity with the specified context and input. |