Class ContentProviderMap
Data class for storing content providers, use IContent
Inheritance
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
[ServiceConfiguration]
public class ContentProviderMap : Object
Constructors
ContentProviderMap()
Initializes a new instance of the Content
Declaration
public ContentProviderMap()
Properties
CustomProvidersExist
Gets a value indicating whether there exist other providers than Default provider
Declaration
public virtual bool CustomProvidersExist { get; }
Property Value
Type | Description |
---|---|
System. |
|
Methods
AddProvider(ContentProvider)
Adds a content provider including entry points for the content provider to the map.
Declaration
public virtual void AddProvider(ContentProvider provider)
Parameters
Type | Name | Description |
---|---|---|
Content |
provider | The content provider. |
GetDefaultProvider()
Gets the default provider, that is the provider that is registered with key String.Empty.
Declaration
public virtual ContentProvider GetDefaultProvider()
Returns
Type | Description |
---|---|
Content |
Default content provider |
GetProvider(ContentReference)
Gets the content provider that serves the content specified by the given content reference
Declaration
public virtual ContentProvider GetProvider(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link. |
Returns
Type | Description |
---|---|
Content |
GetProvider(String)
Gets the content provider instance registered with given id.
Declaration
public virtual ContentProvider GetProvider(string providerId)
Parameters
Type | Name | Description |
---|---|---|
System. |
providerId | The provider id. |
Returns
Type | Description |
---|---|
Content |
The content provider registered with the given id |
IsEntryPoint(ContentReference)
Determines whether the specified contentLink is registered as an entrypoint
Declaration
public virtual bool IsEntryPoint(ContentReference contentLink)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentLink | The content link. |
Returns
Type | Description |
---|---|
System. |
|
Iterate(Action<ContentProvider>)
Method that let passed in delegate operate on each registered content provider
Declaration
public void Iterate(Action<ContentProvider> contentProviderHandler)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentProviderHandler | The content provider handler. |
Iterate(Func<ContentProvider, Boolean>)
Method that let passed in delegate operate on each registered content provider
Declaration
public void Iterate(Func<ContentProvider, bool> contentProviderFunction)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentProviderFunction | The delegate function called for each provider. If function returns true the iteration is stopped. |
RemoveProvider(String)
Remove any loaded Content
Declaration
public virtual bool RemoveProvider(string providerName)
Parameters
Type | Name | Description |
---|---|---|
System. |
providerName | Name of the provider. |
Returns
Type | Description |
---|---|
System. |
True if remove succeded |