Getting Baseline Label information MKSIssueLabels using C# API
‎Nov 07, 2018
01:24 PM
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Notify Moderator
‎Nov 07, 2018
01:24 PM
Getting Baseline Label information MKSIssueLabels using C# API
Using the C# api ....I can use viewissue in the mksapiviewer and it shows that label information is available. However when I parse through the Workitems ....and then the fields I get to the field named
MKSIssueLabels now I am unsure how to get to the mksItemList items
foreach (WorkItem w in r.WorkItems)
{
foreach (IField f in w.Fields.Values)
{
if (f.Name == "MKSIssueLabels")
{
// Parse through the items in mksItemList ??
}
}
Can someone point out how to do this?
0 REPLIES 0