Table of Contents

Class ChannelInfo

Namespace
CMS.ContentEngine
Assembly
CMS.ContentEngine.dll

Data container class for ChannelInfo.

[InfoCache(InfoCacheBy.ID|InfoCacheBy.Name|InfoCacheBy.Guid, Priority = InfoCachePriority.NotRemovable)]
public class ChannelInfo : AbstractInfo<ChannelInfo, IInfoProvider<ChannelInfo>>, IExtensible, IInfo, IAdvancedDataContainer, ICMSObject, IHierarchicalDataContainer, IDataContainer, ISimpleDataContainer, IVirtualHierarchicalObject, IHierarchicalObject, INameIndexable, IMacroObject, IInfoWithId, IInfoWithGuid, IInfoWithName
Inheritance
object
ChannelInfo
Implements
Inherited Members
Extension Methods

Constructors

ChannelInfo()

Creates an empty instance of the ChannelInfo class.

public ChannelInfo()

ChannelInfo(DataRow)

Creates a new instances of the ChannelInfo class from the given System.Data.DataRow.

public ChannelInfo(DataRow dr)

Parameters

dr DataRow

DataRow with the object data.

Fields

OBJECT_TYPE

Object type.

public const string OBJECT_TYPE = "cms.channel"

Field Value

string

TYPEINFO

Type information.

public static readonly ObjectTypeInfo TYPEINFO

Field Value

ObjectTypeInfo

Properties

ChannelDisplayName

Channel display name.

[DatabaseField]
public virtual string ChannelDisplayName { get; set; }

Property Value

string

ChannelGUID

Channel GUID.

[DatabaseField]
public virtual Guid ChannelGUID { get; set; }

Property Value

Guid

ChannelID

Channel ID.

[DatabaseField]
public virtual int ChannelID { get; set; }

Property Value

int

ChannelName

Channel name.

[DatabaseField]
public virtual string ChannelName { get; set; }

Property Value

string

ChannelSize

Channel size, represented by the ChannelSize enum.

[DatabaseField(ValueType = typeof(string))]
public virtual ChannelSize ChannelSize { get; set; }

Property Value

ChannelSize

Remarks

Stored as a string in the database. When using this property in content item query parameterization, convert the value to a string using .ToString() or .ToStringRepresentation().

ChannelType

Channel type, represented by the ChannelType enum.

[DatabaseField(ValueType = typeof(string))]
public virtual ChannelType ChannelType { get; set; }

Property Value

ChannelType

Remarks

Stored as a string in the database. When using this property in content item query parameterization, convert the value to a string using .ToString() or .ToStringRepresentation().

Methods

DeleteObject()

Deletes the object using appropriate provider.

protected override void DeleteObject()

LoadDefaultData()

Loads the default data to the object.

protected override void LoadDefaultData()

SetObject()

Updates the object using appropriate provider.

protected override void SetObject()