Table of Contents

Class ContainerCustomData

Namespace
CMS.Helpers
Assembly
CMS.Helpers.dll

Custom data container for data container.

public class ContainerCustomData : CustomData, IDataContainer, ISimpleDataContainer
Inheritance
object
ContainerCustomData
Implements
Inherited Members
Extension Methods

Constructors

ContainerCustomData()

Constructor - creates empty ContainerCustomData object. Object created by this constructor works only as in-memory storage and does not reflects changes to DataClass and DB.

public ContainerCustomData()

ContainerCustomData(IDataContainer, string)

Constructor - creates empty ContainerCustomData object.

public ContainerCustomData(IDataContainer container, string columnName)

Parameters

container IDataContainer

Related data container

columnName string

Related column name

Properties

this[string]

Gets or sets the value of the column.

public override object this[string key] { get; set; }

Parameters

key string

Column name

Property Value

object

Methods

LoadData(string)

Loads the XML to the content table.

public override void LoadData(string data)

Parameters

data string

Content XML to load

Remove(string)

Removes element with specified key from collection

public override void Remove(string key)

Parameters

key string

Key to remove

SetValue(string, object)

Sets value of column.

public override bool SetValue(string columnName, object value)

Parameters

columnName string

Column name

value object

Column value

Returns

bool