Interface IMacroProcessingColumnAdapter
- Namespace
- CMS.DataEngine
- Assembly
- CMS.DataEngine.dll
Represents a column adapter for macro processing that converts the value into a format understandable by macro engine via Preprocess(string) method (typically, decode or decrypt operation) and converts the text with resolved macros back to the original column format via Postprocess(string) method (typically a corresponding complementary operation - encode or encrypt).
public interface IMacroProcessingColumnAdapter
- Extension Methods
Methods
Postprocess(string)
A complementary operation to Preprocess(string) that brings text
with resolved macros back to the original column format before saving the value back to the object.
Typically, encode or encrypt operation.
string Postprocess(string text)
Parameters
text
string
Returns
- string
Preprocess(string)
Operation that is executed on text
before the value is processed by macro engine.
Typically, decode or decrypt operation.
string Preprocess(string text)
Parameters
text
string
Returns
- string