Konstruktor TfsConfigurationServer — (Uri)
Inicjuje nowe wystąpienie obiektu TfsConfigurationServer.
Przestrzeń nazw: Microsoft.TeamFoundation.Client
Zestaw: Microsoft.TeamFoundation.Client (w Microsoft.TeamFoundation.Client.dll)
Składnia
'Deklaracja
Public Sub New ( _
uri As Uri _
)
public TfsConfigurationServer(
Uri uri
)
Parametry
- uri
Typ: System.Uri
Uniform resource identifier (URI) serwera z systemem Team Foundation Server.
Wyjątki
Wyjątek | Warunek |
---|---|
ArgumentNullException | gdy uri jest zerowy |
Uwagi
// 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);
Zabezpieczenia programu .NET Framework
- Pełne zaufanie do bezpośredniego wywołującego. Tego elementu członkowskiego nie można używać w kodzie częściowo zaufanym. Aby uzyskać więcej informacji, zobacz Przy użyciu bibliotek z częściowo zaufanego kodu..
Zobacz też
Informacje
Przeciążenie TfsConfigurationServer
Przestrzeń nazw Microsoft.TeamFoundation.Client