Interface IContentModelUsage
Defines signatures for the component that handles usage information about content models.
Namespace: EPiServer.Core
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public interface IContentModelUsage
Methods
IsContentTypeUsed(ContentType)
Performs a check if specified Content
This method is for example called before a content type defined in code is deleted.
Declaration
bool IsContentTypeUsed(ContentType contentType)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentType | The contentType to return references for. |
Returns
Type | Description |
---|---|
System. |
IsPropertyDefinitionUsed(PropertyDefinition)
Performs a check if specified Property
This method is for example called before a property definition type defined in code is deleted.
Declaration
bool IsPropertyDefinitionUsed(PropertyDefinition propertyDefinition)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertyDefinition | The property definition. |
Returns
Type | Description |
---|---|
System. |
|
ListContentOfContentType(ContentType)
Gets a list of references to contents of specified Content
This method is for example called before a content type defined in code is deleted.
Declaration
IList<ContentUsage> ListContentOfContentType(ContentType contentType)
Parameters
Type | Name | Description |
---|---|---|
Content |
contentType | The contentType to return references for. |
Returns
Type | Description |
---|---|
System. |
ListContentWithPropertyDefinition(PropertyDefinition, Boolean, Boolean)
Gets the contents with instance of content definition.
This method is for example called before a content definition defined in code is deleted.
Declaration
IList<ContentUsage> ListContentWithPropertyDefinition(PropertyDefinition propertyDefinition, bool onlyNoneMasterLanguage, bool onlyPublished)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertyDefinition | The property definition. |
System. |
onlyNoneMasterLanguage | if set to |
System. |
onlyPublished | if set to |
Returns
Type | Description |
---|---|
System. |