IBuildServiceHost Interface
Interface for a build service host in the server that is running Team Foundation Build.
Namespace: Microsoft.TeamFoundation.Build.Client
Assembly: Microsoft.TeamFoundation.Build.Client (in Microsoft.TeamFoundation.Build.Client.dll)
Syntax
‘선언
Public Interface IBuildServiceHost
public interface IBuildServiceHost
public interface class IBuildServiceHost
type IBuildServiceHost = interface end
public interface IBuildServiceHost
The IBuildServiceHost type exposes the following members.
Properties
Name | Description | |
---|---|---|
Agents | Gets a read-only collection of agents that is associated with this service host. | |
BaseUrl | Gets or sets the base URL for this service host. | |
BuildServer | Gets the build server for this service host. | |
Controller | Gets the build controller that is associated with this service host. | |
Name | Gets or sets the name for this service host. | |
RequireClientCertificates | Gets or sets a flag that describes whether the service host requires client certificates for incoming calls. | |
Uri | Gets the uniform resource identifier (URI) for this service host. |
Top
Methods
Name | Description | |
---|---|---|
AddBuildAgent | Adds a build agent to the collection of agents that are associated with this service host. | |
CreateBuildAgent(String, String) | Creates a build agent that is associated with the current service host and adds it to the collection of agents. | |
CreateBuildAgent(String, String, IBuildController) | Creates a build agent that is associated with the current service host and adds it to the collection of agents. | |
CreateBuildController | Creates a build controller that is associated with the current service host. | |
Delete | Deletes the service host together with all associated controllers and agents. | |
DeleteBuildAgent | Deletes the specified build agent from this service host. | |
DeleteBuildController | Deletes the build controller that is associated with this service host. | |
FindBuildAgent | Gets the build agent that has the specified name and that is associated with the specified build controller. | |
Save | Saves any changes that were made since the last time that the save method was called. | |
SetBuildAgentStatus | Sets the build agent status. | |
SetBuildController | Switches the build controller that is associated with this service host. | |
SetBuildControllerStatus | Sets the build controller status. |
Top