7

Say I make a work item in TFS. Then I make a change and update the text in the History tab (then save).

Using the TFS API, how can I get that text?

I would have thought it would have been in the History string for last item in the Revisions collection on the work item. (Because to set the string via the API you can use History on a normal work item.) However, in the Revisions array, all the work items are showing up as having History empty.

Any ideas on how I can get this string?

Vaccano
  • 78,325
  • 149
  • 468
  • 850

2 Answers2

4

Check this blog post out: http://blogs.msdn.com/b/aaronbjork/archive/2011/01/10/programmatically-reading-work-item-comments.aspx

It’s a simple operation, but it might not be clear at first unless you discover that you need to loop through the collection of Revisions of the work item in order to view those comments.

aaronbjork
  • 506
  • 2
  • 3
1

You can get any of the basic tfs fields via aaronbjork's link and change it to use

Field f = r.Fields.TryGetById(1); or Field f = r.Fields["Title"]

  • title = 1
  • description = 52
  • the list of names and Ids is in the CoreField enumeration (only for non-custom fields)
Community
  • 1
  • 1
Maslow
  • 18,464
  • 20
  • 106
  • 193