Table of Contents

Class AbstractActionContext<TContext>

Namespace
CMS.Base
Assembly
CMS.Base.dll

Base class for action context

public abstract class AbstractActionContext<TContext> : AbstractContext<TContext>, IDataContainer, ISimpleDataContainer, IContext, IVirtualHierarchicalObject, IHierarchicalObject, INameIndexable, ICloneThreadItem where TContext : AbstractActionContext<TContext>, new()

Type Parameters

TContext
Inheritance
object
AbstractContext<TContext>
AbstractActionContext<TContext>
Implements
Derived
Inherited Members
Extension Methods

Properties

OriginalData

Previous context data

protected TContext OriginalData { get; }

Property Value

TContext

RestoreOriginal

If true, the original values are restored in the context

public bool RestoreOriginal { get; set; }

Property Value

bool

Methods

Dispose()

Disposes the object.

public virtual void Dispose()

RestoreOriginalValues()

Restores the original values to the context

protected virtual void RestoreOriginalValues()

StoreOriginalValue<TValue>(ref TValue?, TValue)

Stores current value as the original value if original value hasn't been stored yet.

protected virtual void StoreOriginalValue<TValue>(ref TValue? originalValueProperty, TValue currentValue) where TValue : struct

Parameters

originalValueProperty TValue?

Original value property inner field.

currentValue TValue

Value of the property before it has been changed, hence the original value.

Type Parameters

TValue

Type of the property

StoreOriginalValue<TValue>(ref TValue, TValue)

Stores current value as the original value.

protected virtual void StoreOriginalValue<TValue>(ref TValue originalValueProperty, TValue currentValue) where TValue : class

Parameters

originalValueProperty TValue

Original value property inner field.

currentValue TValue

Value of the property before it has been changed, hence the original value.

Type Parameters

TValue

Type of the property