WorkItemStore.GetWorkItem Method (Int32, Int32)
Gets the previous state of a work item that is specified by ID and revision number.
Namespace: Microsoft.TeamFoundation.WorkItemTracking.Client
Assembly: Microsoft.TeamFoundation.WorkItemTracking.Client (in Microsoft.TeamFoundation.WorkItemTracking.Client.dll)
Syntax
'Declaration
Public Function GetWorkItem ( _
id As Integer, _
revision As Integer _
) As WorkItem
public WorkItem GetWorkItem(
int id,
int revision
)
public:
WorkItem^ GetWorkItem(
int id,
int revision
)
member GetWorkItem :
id:int *
revision:int -> WorkItem
public function GetWorkItem(
id : int,
revision : int
) : WorkItem
Parameters
id
Type: System.Int32The work item ID.
revision
Type: System.Int32The work item revision number.
Return Value
Type: Microsoft.TeamFoundation.WorkItemTracking.Client.WorkItem
The work item state from a specific revision.
Exceptions
Exception | Condition |
---|---|
ArgumentNullException | At least one parameter was null. |
Remarks
The work item is read-only unless the work item that is returned is the latest revision.
.NET Framework Security
- Full trust for the immediate caller. This member cannot be used by partially trusted code. For more information, see Using Libraries from Partially Trusted Code.