Partager via


TfsConfigurationServer, constructeur (Uri)

Initialise une nouvelle instance de TfsConfigurationServer.

Espace de noms :  Microsoft.TeamFoundation.Client
Assembly :  Microsoft.TeamFoundation.Client (dans Microsoft.TeamFoundation.Client.dll)

Syntaxe

'Déclaration
Public Sub New ( _
    uri As Uri _
)
public TfsConfigurationServer(
    Uri uri
)

Paramètres

  • uri
    Type : System.Uri
    L'URI (URI) du serveur qui exécute Team Foundation Server.

Exceptions

Exception Condition
ArgumentNullException

lorsque uri est null

Notes

// Connect to Team Foundation Server
//     server is the name of the server that is running the Team Foundation application-tier. 
//     port is the port that Team Foundation uses. The default port is 8080. 
//     vdir is the virtual path to the Team Foundation application. The default path is tfs. 
Uri tfsUri = (args.Length < 1) ? 
new Uri("http://server:port/vdir") : new Uri(args[0]); 

// Connect to the first one in the array
TfsConfigurationServer tfs = new TfsConfigurationServer(tfsUri);

Sécurité .NET Framework

Voir aussi

Référence

TfsConfigurationServer Classe

TfsConfigurationServer, surcharge

Microsoft.TeamFoundation.Client, espace de noms

Autres ressources

Connexion à Team Foundation Server à partir d'une application console