I am attempting to write a website that connects to TFS and retrieves work item information
NetworkCredential cred = new NetworkCredential("Username", "Password", "Domain");
tfs = new TeamFoundationServer("http://tfs:8080/tfs", cred);
tfs.EnsureAuthenticated();
When I logged in by this way, I would like to sign out like web portal of TFS. Could you help me?