Click or drag to resize
DataRecordContainerItem Property
Gets or sets the value of a column identified by its name.

Namespace: CMS.Base
Assembly: CMS.Base (in CMS.Base.dll) Version: 13.0.131
Syntax
C#
public Object this[
	string columnName
] { get; set; }

Parameters

columnName
Type: SystemString
Name of column whose value to get or set.

Return Value

Type: Object
Returns the value of the column.

Implements

ISimpleDataContainerItemString
Remarks
The DataRecordContainer does not support setting of column values. Calling this property setter always throws NotSupportedException.
See Also