namespace System.Workflow.Activities
{
//
// Summary:
// An abstract class for creating a custom activity with imperative behavior defined
// with the System.Activities.CodeActivity.Execute(System.Activities.CodeActivityContext)
// method, which gives access to variable and argument resolution and extensions.
public abstract class CodeActivity : Activity
{
...
// Summary:
// When implemented in a derived class, performs the execution of the activity.
//
// Parameters:
// context:
// The execution context under which the activity executes.
protected abstract void Execute(CodeActivityContext context);
...
}
}