Method IsComponentUsed
IsComponentUsed(Type)
Determine if component is used by the build pipeline. Returns false if this build configuration does not have a build pipeline.
Declaration
public bool IsComponentUsed(Type type)
Parameters
| Type | Name | Description |
|---|---|---|
| Type | type | The component type. |
Returns
| Type | Description |
|---|---|
| bool | true if the component is used by the build pipeline, false otherwise. |
IsComponentUsed<T>()
Determine if component is used by the build pipeline. Returns false if this build configuration does not have a build pipeline.
Declaration
public bool IsComponentUsed<T>() where T : IBuildComponent
Returns
| Type | Description |
|---|---|
| bool | true if the component is used by the build pipeline, false otherwise. |
Type Parameters
| Name | Description |
|---|---|
| T | The component type. |