Share via


ITaskActivity Interface

Definition

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.

Applies to