Class PropertySettingsRepository
Acts as the link between the Property
Inheritance
Implements
Namespace: EPiServer.Core.PropertySettings.Internal
Assembly: EPiServer.dll
Version: 12.0.3Syntax
[ServiceConfiguration]
public class PropertySettingsRepository : Object, IPropertySettingsRepository
Constructors
PropertySettingsRepository()
Initializes a new instance of the Property
Declaration
public PropertySettingsRepository()
PropertySettingsRepository(IEnumerable<PropertySettings>, DynamicDataStoreFactory, ISynchronizedObjectInstanceCache)
Initializes a new instance of the Property
Declaration
public PropertySettingsRepository(IEnumerable<PropertySettings> settingsByCode, DynamicDataStoreFactory dynamicDataStoreFactory, ISynchronizedObjectInstanceCache iSynchronizedObjectInstanceCache)
Parameters
Type | Name | Description |
---|---|---|
System. |
settingsByCode | |
Dynamic |
dynamicDataStoreFactory | |
ISynchronized |
iSynchronizedObjectInstanceCache |
Methods
Delete(PropertySettingsContainer)
Deletes the specified Property
Declaration
public void Delete(PropertySettingsContainer propertySetting)
Parameters
Type | Name | Description |
---|---|---|
Property |
propertySetting | The Property |
Delete(Guid)
Deletes the specified Property
Declaration
public void Delete(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The System. |
DeleteGlobal(Guid)
Deletes the specified Property
Declaration
public void DeleteGlobal(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The id of the Property |
DeleteStore()
This member supports the EPiServer infrastructure and is not intended to be used directly from your code.
Declaration
public static void DeleteStore()
GetDefault(Type)
Gets the default Property
Declaration
public PropertySettingsWrapper GetDefault(Type propertyType)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyType | Type of the property. |
Returns
Type | Description |
---|---|
Property |
true if successful. |
GetGlobals(Type)
Gets a list of Property
Declaration
public IEnumerable<PropertySettingsWrapper> GetGlobals(Type propertyType)
Parameters
Type | Name | Description |
---|---|---|
System. |
propertyType | Type of the property. |
Returns
Type | Description |
---|---|
System. |
List of global settings for a type |
OnPropertySettingSaved(PropertySettingsRepositoryEventArg)
Raises the Property
Declaration
protected virtual void OnPropertySettingSaved(PropertySettingsRepositoryEventArg args)
Parameters
Type | Name | Description |
---|---|---|
Property |
args | The Property |
Save(PropertySettingsContainer)
Saves the specified Property
Declaration
public void Save(PropertySettingsContainer container)
Parameters
Type | Name | Description |
---|---|---|
Property |
container | The Property |
Save(PropertySettingsWrapper)
Saves the specified Property
Declaration
public void Save(PropertySettingsWrapper wrapper)
Parameters
Type | Name | Description |
---|---|---|
Property |
wrapper | The Property |
SaveGlobal(PropertySettingsWrapper)
Saves the global adding or replacing it in the globals collection.
Declaration
public void SaveGlobal(PropertySettingsWrapper global)
Parameters
Type | Name | Description |
---|---|---|
Property |
global | The global settings instance to save. |
SetDefault(Guid)
Sets which Property
Declaration
public void SetDefault(Guid id)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The id of the propertySetting. |
TryGetContainer(Guid, out PropertySettingsContainer)
Tries to get a Property
Declaration
public bool TryGetContainer(Guid id, out PropertySettingsContainer propertySettingsContainer)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The id of the propertySettingsContainer. |
Property |
propertySettingsContainer | The propertySetting to get. |
Returns
Type | Description |
---|---|
System. |
true if successful. |
TryGetWrapper(Guid, out PropertySettingsWrapper)
Tries to get a Property
Declaration
public bool TryGetWrapper(Guid id, out PropertySettingsWrapper propertySettingsWrapper)
Parameters
Type | Name | Description |
---|---|---|
System. |
id | The id of the PropertySettingsWrapper. |
Property |
propertySettingsWrapper | The PropertySettingsWrapper to get. |
Returns
Type | Description |
---|---|
System. |
true if successful. |
Events
PropertySettingSaved
Occurs when a Property
Declaration
public static event EventHandler<PropertySettingsRepositoryEventArg> PropertySettingSaved
Event Type
Type | Description |
---|---|
System. |