Class UpdateTask
Activity that updates a Task in EPiServer
Namespace: EPiServer.WorkflowFoundation.Activities
Assembly: EPiServer.WorkflowFoundation.dll
Version: 8.11.0Syntax
public class UpdateTask : InvokesBase<UpdateTask>
Constructors
UpdateTask()
Initializes a new instance of the UpdateTask class.
Declaration
public UpdateTask()
Fields
AssignToProperty
Register AssignTo property so it can be databound
Declaration
public static DependencyProperty AssignToProperty
Field Value
Type | Description |
---|---|
System.Workflow.ComponentModel.DependencyProperty |
LogActionProperty
Register LogAction property so it can be databound
Declaration
public static DependencyProperty LogActionProperty
Field Value
Type | Description |
---|---|
System.Workflow.ComponentModel.DependencyProperty |
NotifyByEmailProperty
Register NotifyByEmail property so it can be databound
Declaration
public static DependencyProperty NotifyByEmailProperty
Field Value
Type | Description |
---|---|
System.Workflow.ComponentModel.DependencyProperty |
StatusProperty
Register Status property so it can be databound
Declaration
public static DependencyProperty StatusProperty
Field Value
Type | Description |
---|---|
System.Workflow.ComponentModel.DependencyProperty |
TaskDescriptionProperty
Register TaskDescription property so it can be databound
Declaration
public static DependencyProperty TaskDescriptionProperty
Field Value
Type | Description |
---|---|
System.Workflow.ComponentModel.DependencyProperty |
TaskIdProperty
Register TaskId property so it can be databound
Declaration
public static DependencyProperty TaskIdProperty
Field Value
Type | Description |
---|---|
System.Workflow.ComponentModel.DependencyProperty |
TaskSubjectProperty
Register TaskSubject property so it can be databound
Declaration
public static DependencyProperty TaskSubjectProperty
Field Value
Type | Description |
---|---|
System.Workflow.ComponentModel.DependencyProperty |
Properties
AssignTo
Gets or sets who the task is assigned to
Declaration
public string AssignTo { get; set; }
Property Value
Type | Description |
---|---|
System.String | The assign to. |
LogAction
Gets or sets if this action should be logged to history items for workflow instance
Declaration
public bool LogAction { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
NotifyByEmail
Gets or sets if the assigned to user should be notified by email
Declaration
public bool NotifyByEmail { get; set; }
Property Value
Type | Description |
---|---|
System.Boolean |
Status
Gets or sets the status for the task
Declaration
public TaskStatus Status { get; set; }
Property Value
Type | Description |
---|---|
TaskStatus | The status. |
TaskDescription
Gets or sets the task description.
Declaration
public string TaskDescription { get; set; }
Property Value
Type | Description |
---|---|
System.String | The task description. |
TaskId
Gets or sets the id of the task
Declaration
public int TaskId { get; set; }
Property Value
Type | Description |
---|---|
System.Int32 | The task id. |
TaskSubject
Gets or sets the task subject.
Declaration
public string TaskSubject { get; set; }
Property Value
Type | Description |
---|---|
System.String | The task subject. |
Methods
OnMethodInvoking(EventArgs)
Provides a hook for derived classes to set System.Workflow.Activities.CallExternalMethodActivity.ParameterBindings. This method is called just before the external method is run.
Declaration
protected override void OnMethodInvoking(EventArgs e)
Parameters
Type | Name | Description |
---|---|---|
System.EventArgs | e | An System.EventArgs that contains the data for the System.Workflow.Activities.CallExternalMethodActivity.MethodInvoking event. |