.NET Framework Class Library
TaskItem Class

Note: This class is new in the .NET Framework version 2.0.

Defines a single item of the project as it is passed into a task.

Namespace: Microsoft.Build.Utilities
Assembly: Microsoft.Build.Utilities (in microsoft.build.utilities.dll)

Syntax

Visual Basic (Declaration)
Public NotInheritable Class TaskItem
    Inherits MarshalByRefObject
    Implements ITaskItem
Visual Basic (Usage)
Dim instance As TaskItem
C#
public sealed class TaskItem : MarshalByRefObject, ITaskItem
C++
public ref class TaskItem sealed : public MarshalByRefObject, ITaskItem
J#
public final class TaskItem extends MarshalByRefObject implements ITaskItem
JScript
public final class TaskItem extends MarshalByRefObject implements ITaskItem
Remarks

TaskItem objects do not exactly correspond to item elements in project files. If they did, then tasks would have access to data that was not explicitly passed into the task through the project file. This is not a security issue, but rather an issue with project file clarity and transparency.

This class has to be sealed since the build engine instantiates its own copy of this type. If a third party were to extend this class, then the build engine will yield an undesired behavior.

Inheritance Hierarchy

System.Object
   System.MarshalByRefObject
    Microsoft.Build.Utilities.TaskItem
Thread Safety

Any public static (Shared in Visual Basic) members of this type are thread safe. Any instance members are not guaranteed to be thread safe.
Platforms

Windows 98, Windows 2000 SP4, Windows Millennium Edition, Windows Server 2003, Windows XP Media Center Edition, Windows XP Professional x64 Edition, Windows XP SP2, Windows XP Starter Edition

The .NET Framework does not support all versions of every platform. For a list of the supported versions, see System Requirements.

Version Information

.NET Framework

Supported in: 2.0
See Also

Tags :


Page view tracker