Class BundleContributorCollection
Inheritance
BundleContributorCollection
Assembly: Volo.Abp.AspNetCore.Mvc.UI.Bundling.Abstractions.dll
Syntax
public class BundleContributorCollection
Constructors
BundleContributorCollection()
Declaration
public BundleContributorCollection()
Methods
Add(Type)
Declaration
public void Add(Type contributorType)
Parameters
Type |
Name |
Description |
Type |
contributorType |
|
Add(IBundleContributor)
Declaration
public void Add(IBundleContributor contributor)
Parameters
Add<TContributor>()
Declaration
public void Add<TContributor>() where TContributor : IBundleContributor, new()
Type Parameters
Name |
Description |
TContributor |
|
GetAll()
Declaration
public IReadOnlyList<IBundleContributor> GetAll()
Returns
Remove<TContributor>(bool)
Declaration
public void Remove<TContributor>(bool includeDependencies = false) where TContributor : IBundleContributor, new()
Parameters
Type |
Name |
Description |
bool |
includeDependencies |
|
Type Parameters
Name |
Description |
TContributor |
|
Replace(Type, Type, bool)
Declaration
public void Replace(Type sourceContributorType, Type destContributorType, bool includeDependencies = false)
Parameters
Type |
Name |
Description |
Type |
sourceContributorType |
|
Type |
destContributorType |
|
bool |
includeDependencies |
|
Replace<TSourceContributor, TDestContributorType>(bool)
Declaration
public void Replace<TSourceContributor, TDestContributorType>(bool includeDependencies = false) where TSourceContributor : IBundleContributor, new() where TDestContributorType : IBundleContributor, new()
Parameters
Type |
Name |
Description |
bool |
includeDependencies |
|
Type Parameters
Name |
Description |
TSourceContributor |
|
TDestContributorType |
|
Extension Methods