Table of Contents

Interface ISimpleDataContainer

Namespace
CMS.Base
Assembly
CMS.Base.dll

Simple data container interface (does not provide any information about the columns).

public interface ISimpleDataContainer
Extension Methods

Properties

this[string]

Gets or sets the value of the column.

object this[string columnName] { get; set; }

Parameters

columnName string

Column name

Property Value

object

Methods

GetValue(string)

Returns value of column.

object GetValue(string columnName)

Parameters

columnName string

Column name

Returns

object

SetValue(string, object)

Sets value of column.

bool SetValue(string columnName, object value)

Parameters

columnName string

Column name

value object

Column value

Returns

bool