2

How do I use TFS sdk to get the list of hyperlink names that are linked to a tfs workitem.

Currently I can see only 1 property HyperLinkCount which just gets me the count of hyperlinks.

4

1 に答える 1

3

Linksのプロパティを使用する必要がありますWorkItem

タイプのリンクはMicrosoft.TeamFoundation.WorkItemTracking.Client.Hyperlink、あなたが求めているものです。次のように取得できます。

var hyperLinks = 
    workItemStore
    .GetWorkItem(12345)
    .Links
    .OfType<Hyperlink>();
于 2012-08-11T20:01:22.520 に答える