Click or drag to resize
IMacroProcessingColumnAdapter Interface
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).

Namespace: CMS.DataEngine
Assembly: CMS.DataEngine (in CMS.DataEngine.dll) Version: 13.0.131
Syntax
C#
public interface IMacroProcessingColumnAdapter

The IMacroProcessingColumnAdapter type exposes the following members.

Methods
  NameDescription
Public methodPostprocess
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.
Public methodPreprocess
Operation that is executed on text before the value is processed by macro engine. Typically, decode or decrypt operation.
Top
See Also