12345678910111213141516171819202122232425262728293031323334 |
- using System;
- using System.Net;
- using Microsoft.TeamFoundation.Client;
- namespace pulse
- {
-
-
-
-
- public class TfsCredentialProvider : ICredentialsProvider
- {
-
-
-
-
-
-
- public ICredentials GetCredentials(Uri uri, ICredentials failedCredentials)
- {
- return new NetworkCredential("UserName", "Password", "Domain");
- }
-
-
-
-
-
- public void NotifyCredentialsAuthenticated(Uri uri)
- {
- throw new NotImplementedException();
- }
- }
- }
|