是否可以模仿Windows用户进行TFS或TFS Web访问?
答案 0 :(得分:1)
是的,有可能。你会想要做这样的事情:
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 通常具有该权限。