ISectionFactory Interface
This interface represents a factory that creates sections and nodes for the Build Details View or Request View.
Namespace: Microsoft.TeamFoundation.Build.Controls
Assembly: Microsoft.TeamFoundation.Build.Controls (in Microsoft.TeamFoundation.Build.Controls.dll)
Syntax
'Declaration
Public Interface ISectionFactory
public interface ISectionFactory
public interface class ISectionFactory
type ISectionFactory = interface end
public interface ISectionFactory
The ISectionFactory 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 ISectionNodes for this factory. | |
CreateSections | This method should return all IOrderedSections 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