如何获取TFS 2013中所有用户的列表

时间:2015-06-04 08:53:45

标签: c# visual-studio-2012 tfs tfs2013

我正在使用Team Foundation Server(TFS)2013和Visual Studio 2012.我需要TFS中所有用户的列表。

有没有办法让TFS中的所有用户使用C#?

1 个答案:

答案 0 :(得分:13)

从TFS 2010获取用户列表,您可以尝试使用TFS API,请参阅以下代码段:

TfsTeamProjectCollection tfs = new TfsTeamProjectCollection(new Uri("url"));
tfs.EnsureAuthenticated();

IGroupSecurityService gss = tfs.GetService<IGroupSecurityService>();

Identity SIDS = gss.ReadIdentity(SearchFactor.AccountName, "Project Collection Valid Users", QueryMembership.Expanded);

Identity[] UserId = gss.ReadIdentities(SearchFactor.Sid, SIDS.Members, QueryMembership.None);

foreach (Identity user in UserId)
{
    Console.WriteLine(user.AccountName);
    Console.WriteLine(user.DisplayName);
}

请尝试此代码,上面的代码在VS2010&amp; VS2013。如果您有任何问题,请告诉我。

this link

中的更多信息