Class PropertyDefinitionRepository
Repository for the Property
Implements
Namespace: EPiServer.DataAbstraction
Assembly: EPiServer.dll
Version: 12.0.3Syntax
public abstract class PropertyDefinitionRepository : Object, IPropertyDefinitionRepository
Constructors
PropertyDefinitionRepository()
Declaration
protected PropertyDefinitionRepository()
Methods
CheckUsage(Int32, Boolean, Boolean, Boolean)
Checks the usage.
Declaration
public abstract bool CheckUsage(int propertyDefinitionID, bool onlyLanguageSpecific, bool onlyPublished, bool isDynamic)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyDefinitionID | The property definition ID. |
System. |
onlyLanguageSpecific | if set to |
System. |
onlyPublished | if set to |
System. |
isDynamic | if set to |
Returns
Type | Description |
---|---|
System. |
Delete(PropertyDefinition)
Deletes a Property
Declaration
public abstract void Delete(PropertyDefinition propertyDefinition)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertyDefinition | The Property |
ExistsPropertyDefinitionWithContentType(Guid)
Determines whether there is any property definition of the specified content type.
Declaration
public abstract bool ExistsPropertyDefinitionWithContentType(Guid contentTypeID)
Parameters
Type | Name | Description |
---|---|---|
System. |
contentTypeID | The content type ID. |
Returns
Type | Description |
---|---|
System. |
|
Remarks
An example would be if there is a page type that has a property definition of a block with the specified id (contentTypeID)
GetUsage(Int32, Boolean, Boolean, Boolean)
Retrieves information about the usage of the Property
Declaration
public abstract IEnumerable<ContentUsage> GetUsage(int propertyDefinitionID, bool onlyLanguageSpecific, bool onlyPublished, bool isDynamic)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyDefinitionID | The property definition ID. |
System. |
onlyLanguageSpecific | if set to |
System. |
onlyPublished | if set to |
System. |
isDynamic | if set to |
Returns
Type | Description |
---|---|
System. |
List of Content |
List(Int32)
Lists all Property
Declaration
public abstract IEnumerable<PropertyDefinition> List(int pageTypeID)
Parameters
Type | Name | Description |
---|---|---|
System. |
pageTypeID | The page type id. |
Returns
Type | Description |
---|---|
System. |
Enumeration of Property |
ListDynamic()
Lists all Property
Declaration
public IEnumerable<PropertyDefinition> ListDynamic()
Returns
Type | Description |
---|---|
System. |
A list of Property |
Load(Int32)
Loads a Property
Declaration
public abstract PropertyDefinition Load(int propertyDefinitionID)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyDefinitionID | The Id of the definition to load. |
Returns
Type | Description |
---|---|
Property |
The Property |
OnPropertyDefinitionDeleted(EventArgs)
Raises the Property
Declaration
protected virtual void OnPropertyDefinitionDeleted(EventArgs args)
Parameters
Type | Name | Description |
---|---|---|
System. |
args | The System. |
OnPropertyDefinitionSaved(EventArgs)
Raises the Property
Declaration
protected virtual void OnPropertyDefinitionSaved(EventArgs args)
Parameters
Type | Name | Description |
---|---|---|
System. |
args | The System. |
Save(PropertyDefinition)
Saves the specified Property
Declaration
public void Save(PropertyDefinition propertyDefinition)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertyDefinition | The property definition to save. |
Save(PropertyDefinition, Boolean)
Saves the specified Property
Declaration
public abstract void Save(PropertyDefinition propertyDefinition, bool forceCacheClear)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertyDefinition | The property definition to save. |
System. |
forceCacheClear | Flag to determine if cache should be cleared regardless if anything is changed. |
Events
PropertyDefinitionDeleted
Occurs when a Property
Declaration
public static event EventHandler<EventArgs> PropertyDefinitionDeleted
Event Type
Type | Description |
---|---|
System. |
PropertyDefinitionSaved
Occurs when a Property
Declaration
public static event EventHandler<EventArgs> PropertyDefinitionSaved
Event Type
Type | Description |
---|---|
System. |