IBuildDetailFactory Interface
This interface represents a factory that creates sections and nodes for the Build Details View.
Namespace: Microsoft.TeamFoundation.Build.Controls
Assembly: Microsoft.TeamFoundation.Build.Controls (in Microsoft.TeamFoundation.Build.Controls.dll)
Syntax
'Declaration
Public Interface IBuildDetailFactory
public interface IBuildDetailFactory
public interface class IBuildDetailFactory
type IBuildDetailFactory = interface end
public interface IBuildDetailFactory
The IBuildDetailFactory type exposes the following members.
Properties
Name | Description | |
---|---|---|
Name | Returns the name of the factory (this name should never be localized). |
Top
Methods
Name | Description | |
---|---|---|
CreateNodes | This method should return all IBuildDetailNodes for this factory. | |
CreateSections | This method should return all IBuildDetailSections for this factory. | |
LoadData | This method should make all necessary server calls to aquire the data that is required to display the sections and nodes for this factory. This method is called on a background thread (no UI work can be done). |
Top