Class ManualTask
Represents a manual task, which is a Task that is assigned to and executed by a user and can be included in a project package if it needs to be performed offline by someone else (CreateProjectPackage(Guid, String, String, ProjectPackageCreationOptions). To create a new manual task, use CreateManualTask(String, String, DateTime, TaskFileInfo[]).
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: Sdl.ProjectAutomation.Core
Assembly: Sdl.ProjectAutomation.Core.dll
Syntax
public class ManualTask : Task
Constructors
ManualTask()
Declaration
public ManualTask()
Properties
AssignToUserId
Gets the ID of the user who will perform the task.
Declaration
public string AssignToUserId { get; }
Property Value
Type | Description |
---|---|
System.String |
Remarks
Note that in file-based projects, this ID can be anything and does not necessarily represent an actual Windows User ID or similar. The system merely tracks the user ID for informational purposes.
DueDate
Gets the due date of this manual task. This is optional.
Declaration
public DateTime? DueDate { get; }
Property Value
Type | Description |
---|---|
System.Nullable<System.DateTime> |