gpt4 book ai didi

tfs - 在 TFS 2010 上进行身份验证

转载 作者:行者123 更新时间:2023-12-02 01:02:48 25 4
gpt4 key购买 nike

我在作为 MS Team Foundation Server 上的特定用户进行身份验证时遇到问题。在旧版本中,它看起来像:

teamFoundationCredential = new System.Net.NetworkCredential("<USERNAME>", "<PASSWORD>", "<DOMAIN>");

TeamFoundationServer tfs = new TeamFoundationServer("http://mars:8080/", teamFoundationCredential);

有人可以告诉我 2010 版本的等效内容吗?到目前为止我已经:

ICredentialsProvider cred = null;

tfs = TfsTeamProjectCollectionFactory.GetTeamProjectCollection(new Uri("http://asebeast.cpsc.ucalgar.ca:8080/tfs/DefualtCollection"));

tfs.EnsureAuthenticated();

谢谢

最佳答案

对于 TFS 2010,请使用以下内容:

TfsTeamProjectCollection collection = new TfsTeamProjectCollection(
new Uri("http://asebeast.cpsc.ucalgar.ca:8080/tfs/DefaultCollection",
new System.Net.NetworkCredential("domain_name\\user_name", "pwd"));
collection.EnsureAuthenticated();

关于tfs - 在 TFS 2010 上进行身份验证,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/2829514/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com