I am trying to list the project collections of a tfs server. I am only connected to one of the three collections and I am using this method :
ReadOnlyCollection<CatalogNode> collectionsNodes =
configurationServer.CatalogNode.QueryChildren(
new[] {CatalogResourceTypes.ProjectCollection },
false, CatalogQueryOptions.None);
But this block returns three collections, not only the one I am connected to. Is there a way to list only the collections I am connected to ?