WorkItemFieldChangeEventHandler Delegate

This event handler listens to field change events. These events are raised when changes are made to the WorkItem.

Namespace:  Microsoft.TeamFoundation.WorkItemTracking.Client
Assembly:  Microsoft.TeamFoundation.WorkItemTracking.Client (in Microsoft.TeamFoundation.WorkItemTracking.Client.dll)

Syntax

'Declaration
Public Delegate Sub WorkItemFieldChangeEventHandler ( _
    sender As Object, _
    e As WorkItemEventArgs _
)
'Usage
Dim instance As New WorkItemFieldChangeEventHandler(AddressOf HandlerMethod)
public delegate void WorkItemFieldChangeEventHandler(
    Object sender,
    WorkItemEventArgs e
)
public delegate void WorkItemFieldChangeEventHandler(
    Object^ sender, 
    WorkItemEventArgs^ e
)
JScript does not support delegates.

Parameters

Remarks

The event arguments are of type WorkItemEventArgs. This has two gettable properties. The Field property specifies the field changed, if any. The Object property holds the LinkCollection or AttachmentCollection if a link or file attachment change occurred. If the whole work item is revised, the argument will be nulla null reference (Nothing in Visual Basic).

See Also

Reference

Microsoft.TeamFoundation.WorkItemTracking.Client Namespace