Table of Contents

Class AbstractInfoBase<TInfo>.GeneralizedInfoWrapper

Namespace
CMS.DataEngine
Assembly
CMS.DataEngine.dll

Info object wrapper for generalized access

public abstract class AbstractInfoBase<TInfo>.GeneralizedInfoWrapper : GeneralizedAbstractInfo, ICMSObject, IHierarchicalDataContainer, IDataContainer, ISimpleDataContainer, IVirtualHierarchicalObject, IHierarchicalObject, INameIndexable, ICMSStorage
Inheritance
object
AbstractInfoBase<TInfo>.GeneralizedInfoWrapper
Implements
Derived
Inherited Members
Extension Methods

Constructors

GeneralizedInfoWrapper(AbstractInfoBase<TInfo>)

Constructor

protected GeneralizedInfoWrapper(AbstractInfoBase<TInfo> mainObj)

Parameters

mainObj AbstractInfoBase<TInfo>

Main object to wrap

Properties

MainObject

Main object

public AbstractInfoBase<TInfo> MainObject { get; protected set; }

Property Value

AbstractInfoBase<TInfo>

OriginalObjectCodeName

Returns the original object code name

public override string OriginalObjectCodeName { get; }

Property Value

string

Methods

DeleteData()

Deletes the object from the database.

public override void DeleteData()

DeleteDataAsync(CancellationToken)

Asynchronously deletes the object from the database.

public override Task DeleteDataAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task

InsertData()

Inserts the object to the database.

public override void InsertData()

InsertDataAsync(CancellationToken)

Asynchronously inserts the object to the database.

public override Task InsertDataAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task

SetData()

Updates or inserts the object to the database.

public void SetData()

SetDataAsync(CancellationToken)

Asynchronously updates or inserts the object to the database.

public Task SetDataAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task

UpdateData()

Updates the object to the database.

public override void UpdateData()

UpdateDataAsync(CancellationToken)

Asynchronously updates the object in the database.

public override Task UpdateDataAsync(CancellationToken cancellationToken)

Parameters

cancellationToken CancellationToken

The cancellation instruction.

Returns

Task

Validate()

Validates whether the info object's state satisfies domain specific constraints and returns the validation result.

public InfoValidationResult Validate()

Returns

InfoValidationResult

Returns validation result with IsValid set to true, if value is valid. Otherwise returns result with the flag set to false and a corresponding error message.