コード例 #1
0
        public ChildItemCollection GetListOfWorkItems(string tfsUrlPath, string projectName, string[] workItemIds)
        {
            this.Connect(tfsUrlPath, projectName);
            QueryResult         result = server.Execute(QueryStore.GetListOfWorkItemsQuery(workItemIds), null, false);
            ChildItemCollection ChildItemCollection = reportEngine.CompileListOfWorkItems(tfsUrlPath, projectName, result);

            return(ChildItemCollection);
        }