TaskCollectionAdd(ValueTupleString, String, TaskTypeItem, TaskStatusItem) Method
Add one or more tasks using a simple tuple approach.
Namespace: ProjectTaskAssembly: ProjectTask (in ProjectTask.dll) Version: 25.2814.3647
public List<TaskItem> Add(
params (string , string , TaskTypeItem , TaskStatusItem )[] entries
)
Public Function Add (
ParamArray entries As ( As String, As String, As TaskTypeItem, As TaskStatusItem)()
) As List(Of TaskItem)
No code example is currently available or this language may not be supported.
- entries ValueTupleString, String, TaskTypeItem, TaskStatusItem
-
One or more displayName, description, itemType, itemStatus tuples.
ListTaskItem
Reference to a list of items that have been added to the collection.
To use this method, call it similarly to:
project.Tasks.Add(
("Maiden Project",
"Creating a new project-level task.",
"Project", "InProgress"),
("Kick-Off Task",
"Creating a new task.",
"Task", "TODO"),