Class AbstractActionContext<TContext>
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
-
objectAbstractSimpleDataContainer<TContext>AbstractDataContainer<TContext>AbstractHierarchicalObject<TContext>ContextContainer<TContext>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
TValueValue 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
TValueOriginal value property inner field.
currentValue
TValueValue of the property before it has been changed, hence the original value.
Type Parameters
TValue
Type of the property