Is it possible to get list of query names that is present in the particular iteration path in TFS SDK ?
I am able to get all the query names of a project using the following code
foreach (StoredQuery qi in detailsOfTheSelectedProject.StoredQueries)
{
cmbQueries.Items.Add(qi.Name);
}
But, that I don't need, instead I need to get the query names for the particular iteration path.
I also referred this question in Stack Overflow, but not found any answer.