Class DefaultContentTypeRepository
Inherited Members
Namespace: EPiServer.DataAbstraction.Internal
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public class DefaultContentTypeRepository : ContentTypeRepository, IContentTypeRepository, IContentTypeRepository<ContentType>, ICachedRepository
Constructors
DefaultContentTypeRepository(ContentTypeModelRepository, ContentTypeDB, ModelMerger, ITabDefinitionRepository, IPropertyDefinitionTypeRepository, IPropertyDefinitionTypeEvents, ITypeReferenceAnalyzer, IPropertyDefinitionRepository, ISynchronizedObjectInstanceCache, IContentTypeBaseResolver, IContentTypeVersionEvaluator, IContentTypeComparer)
Initializes a new instance of the Default
Declaration
public DefaultContentTypeRepository(ContentTypeModelRepository modelRepository, ContentTypeDB contentTypeDataAccess, ModelMerger modelMerger, ITabDefinitionRepository tabDefinitionRepository, IPropertyDefinitionTypeRepository propertyDefinitionTypeRepository, IPropertyDefinitionTypeEvents propertyDefinitionTypeEvents, ITypeReferenceAnalyzer circularReferenceValidator, IPropertyDefinitionRepository propertyDefinitionRepository, ISynchronizedObjectInstanceCache cacheInstance, IContentTypeBaseResolver contentTypeBaseResolver, IContentTypeVersionEvaluator contentTypeVersionEvaluator, IContentTypeComparer contentTypeComparer)
Parameters
Type | Name | Description |
---|---|---|
Content |
modelRepository | |
Content |
contentTypeDataAccess | |
Model |
modelMerger | |
ITab |
tabDefinitionRepository | |
IProperty |
propertyDefinitionTypeRepository | |
IProperty |
propertyDefinitionTypeEvents | |
IType |
circularReferenceValidator | |
IProperty |
propertyDefinitionRepository | |
ISynchronized |
cacheInstance | |
IContent |
contentTypeBaseResolver | |
IContent |
contentTypeVersionEvaluator | |
IContent |
contentTypeComparer |
Methods
ClearCache()
Clears the local content type cache.
Declaration
public static void ClearCache()
Copy(ContentType)
Creates a copy of the specified content type in the data repository and returns it.
Declaration
public override ContentType Copy(ContentType contentType)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentType | The Content |
Returns
Type | Description |
---|---|
Content |
The copy of the Content |
Overrides
Delete(ContentType)
Deletes a Content
Declaration
public override void Delete(ContentType contentType)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentType |
Overrides
List()
Lists all Content
Declaration
public override IEnumerable<ContentType> List()
Returns
Type | Description |
---|---|
System. |
Enumeration of Content |
Overrides
Load(Guid)
Loads a Content
Declaration
public override ContentType Load(Guid guid)
Parameters
Type | Name | Description |
---|---|---|
System. |
guid | The Content |
Returns
Type | Description |
---|---|
Content |
The Content |
Overrides
Load(Int32)
Loads a Content
Declaration
public override ContentType Load(int id)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The Content |
Returns
Type | Description |
---|---|
Content |
The Content |
Overrides
Load(String)
Loads a Content
Declaration
public override ContentType Load(string name)
Parameters
Type | Name | Description |
---|---|---|
System. |
name | The Content |
Returns
Type | Description |
---|---|
Content |
The Content |
Overrides
Load(Type)
Loads a Content
Declaration
public override ContentType Load(Type modelType)
Parameters
Type | Name | Description |
---|---|---|
System. |
modelType | The underlying System. |
Returns
Type | Description |
---|---|
Content |
The Content |
Overrides
Save(ContentType)
Saves the specified content type to the data repository.
Declaration
public override void Save(ContentType contentType)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentType | The content type to save. |
Overrides
Remarks
This member supports the EPiServer infrastructure and is not intended to be used directly from your code.
Exceptions
Type | Condition |
---|---|
System. |
|
Save(IEnumerable<ContentType>, ContentTypeSaveOptions)
Save list of Content
Declaration
public override void Save(IEnumerable<ContentType> contentTypes, ContentTypeSaveOptions options)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentTypes | The content types. |
Content |
options | The content type save options. |
Overrides
Exceptions
Type | Condition |
---|---|
Version |
Throws the exception when version transition is not valid. |
Explicit Interface Implementations
ICachedRepository.ClearCache()
Clears all the cached data from the repository.
Declaration
void ICachedRepository.ClearCache()