Method GetRequiredComponents
GetRequiredComponents(BuildContext)
Get all required components from Build
Declaration
public IEnumerable<IBuildComponent> GetRequiredComponents(BuildContext context)
Parameters
Type | Name | Description |
---|---|---|
Build |
context | The Build |
Returns
Type | Description |
---|---|
IEnumerable<IBuild |
List of required components. |
GetRequiredComponents(BuildContext, Type)
Get all required components from Build
Declaration
public IEnumerable<IBuildComponent> GetRequiredComponents(BuildContext context, Type type)
Parameters
Type | Name | Description |
---|---|---|
Build |
context | The Build |
Type | type | Type of the components. |
Returns
Type | Description |
---|---|
IEnumerable<IBuild |
List of required components. |
GetRequiredComponents<T>(BuildContext)
Get all required components from BuildT
.
Declaration
public IEnumerable<T> GetRequiredComponents<T>(BuildContext context) where T : IBuildComponent
Parameters
Type | Name | Description |
---|---|---|
Build |
context | The Build |
Returns
Type | Description |
---|---|
IEnumerable<T> | List of required components. |
Type Parameters
Name | Description |
---|---|
T | Type of the components. |