ProjectDataSet.TaskRow.TASK_UID Property
Specifies the GUID of the task.
Namespace: [Project Web service]
Service reference: http://ServerName:32843/[Project Service Application GUID]/PSI/Project.svc
Web service reference: http://ServerName/ProjectServerName/_vti_bin/PSI/Project.asmx?wsdl
Syntax
'Declaration
Public Property TASK_UID As Guid
Get
Set
'Usage
Dim instance As ProjectDataSet.TaskRow
Dim value As Guid
value = instance.TASK_UID
instance.TASK_UID = value
public Guid TASK_UID { get; set; }
Property Value
Type: System.Guid
Remarks
Important
Project Server does not allow duplicate task GUIDs in the same project, but it does not check for duplicate task GUIDs in other projects. You should never reuse a GUID for TASK_UID when you create tasks, even if the tasks are in different projects. Duplicate task GUIDs break other Project Server functions such as the Cube Build Service and updates of the Reporting database.
Examples
For a code example, see AddTaskRow(ProjectDataSet.TaskRow).