IBuildMachineEvents Interface
Event contract for managing the state of a build server from a remote process.
Namespace: Microsoft.TeamFoundation.Build.Hosting
Assembly: Microsoft.TeamFoundation.Build.Config (in Microsoft.TeamFoundation.Build.Config.dll)
Syntax
'Declaration
<ServiceContractAttribute(Namespace := "https://schemas.microsoft.com/TeamFoundation/2010/Build/Hosting")> _
Public Interface IBuildMachineEvents
[ServiceContractAttribute(Namespace = "https://schemas.microsoft.com/TeamFoundation/2010/Build/Hosting")]
public interface IBuildMachineEvents
[ServiceContractAttribute(Namespace = L"https://schemas.microsoft.com/TeamFoundation/2010/Build/Hosting")]
public interface class IBuildMachineEvents
[<ServiceContractAttribute(Namespace = "https://schemas.microsoft.com/TeamFoundation/2010/Build/Hosting")>]
type IBuildMachineEvents = interface end
public interface IBuildMachineEvents
The IBuildMachineEvents type exposes the following members.
Methods
Name | Description | |
---|---|---|
BuildCompleted | The method invoked when a build has completed on a hosted controller. | |
BuildStarted | The method invoked when a build has started on a hosted controller. | |
BuildStarting | The method invoked when a build is starting on a hosted controller. | |
Connected | ||
CredentialsChanged | The method is invoked when the service host authenticating credentials are changed. | |
Disconnected | ||
ProcessCreated | The method invoked when a hosted agent or controller has been created. | |
ProcessDeleted | The method invoked when a hosted agent or controller has been deleted. | |
ProcessStarted | The method invoked when a hosted agent or controller has completed startup. | |
ProcessStarting | The method invoked when a hosted agent or controller has initiated a startup. | |
ProcessStopped | The method invoked when a hosted agent or controller has completed shutdown. | |
ProcessStopping | The method invoked when a hosted agent or controller has initiated shutdown. | |
Started | The method invoked when the server has completed startup. | |
Starting | The method invoked when the server has initiated a startup. | |
Stopped | The method invoked when the server has completed shutdown. | |
Stopping | The method invoked when the server has initiated a shutdown. | |
WorkflowCompleted | The method invoked when a workflow has completed on a hosted agent. | |
WorkflowStarted | The method invoked when a workflow has started on a hosted agent. | |
WorkflowStarting | The method invoked when a workflow is starting on a hosted agent. |
Top