且构网

分享程序员开发的那些事...
且构网 - 分享程序员编程开发的那些事

我们可以模拟 Windows 用户访问 TFS 或 TFS Web 吗?

更新时间:2023-10-16 19:28:52

是的,这是可能的.你会想要做这样的事情:

Yes, it is possible. You will want to do something like this:

NetworkCredential serviceUser = new NetworkCredential(username, password, domain);
ICredentialsProvider TfsProxyCredentials = new NetworkCredentialsProvider(serviceUser);
Uri tpcUri = new Uri("http://yourserver:8080/tfs/yourCollectionName");
TfsTeamProjectCollection tpc = new TfsTeamProjectCollection(tpcUri, serviceUser);

// Get the TFS identity management service
IIdentityManagementService ims = tpc.GetService<IIdentityManagementService>();

// Look up the user that we want to impersonate
TeamFoundationIdentity identity = ims.ReadIdentity(IdentitySearchFactor.AccountService, userToImpersonate, MembershipQuery.None, ReadIdentityOptions.None);

TfsTeamProjectCollection impersonatedCollection = new TfsTeamProjectCollection(tpcUri, serviceUser, TfsProxyCredentials, identity.Descriptor);

return impersonatedCollection;

请注意,服务用户必须具有代表其他用户操作的权限.您的 TFSService 通常具有该权限.

Note that the service user must have the permissions to act on behalf of other users. Your TFSService typically has that privilege.