Webservice TFS在线预览

时间:2012-10-10 09:07:15

标签: c# web-services tfs azure-devops

我想通过c#代码访问我的团队基础服务器(在线预览)webservice。我的问题是找到连接webservice的正确地址(“http://XXX.tfspreview.com”不是正确的地址)。 有人知道这个地址或有一些信息吗?

在微软主页上搜索没有结果。

谢谢!

2 个答案:

答案 0 :(得分:1)

答案 1 :(得分:0)

您可以添加此命名空间

using Microsoft.TeamFoundation.Build.Client;
using Microsoft.TeamFoundation.Client;

示例(服务定位器TfsTeamProjectCollection)

  TfsTeamProjectCollection teamProjectCollection = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri("http://tfsURI"));
  var service = (YourTypeOfService)teamProjectCollection.GetService(typeof(YourTypeOfService));