Table of Contents

Class PathMacroContainer

Namespace
CMS.MacroEngine
Assembly
CMS.MacroEngine.dll

Object encapsulating path macro resolving as ISimpleDataContainer.

public class PathMacroContainer : ISimpleDataContainer
Inheritance
object
PathMacroContainer
Implements
Extension Methods

Constructors

PathMacroContainer(MacroResolver)

Creates new instance of PathMacroContainer.

public PathMacroContainer(MacroResolver resolver)

Parameters

resolver MacroResolver

Resolver to resolve path macros

Fields

mCurrentPath

Current path.

protected string mCurrentPath

Field Value

string

mLevelRegExp

Regular expression to capture the path level macro.

protected static Regex mLevelRegExp

Field Value

Regex

mPathSegments

Path segments array.

protected string[] mPathSegments

Field Value

string[]

mResolver

Resolver used to resolve the paths.

protected MacroResolver mResolver

Field Value

MacroResolver

Properties

CurrentPath

Current path.

public string CurrentPath { get; set; }

Property Value

string

this[string]

Gets or sets the value of the column.

public object this[string columnName] { get; set; }

Parameters

columnName string

Column name

Property Value

object

LevelRegExp

Regular expression to capture the path level macro.

public static Regex LevelRegExp { get; set; }

Property Value

Regex

Methods

GetValue(string)

Resolves the path macro.

public object GetValue(string pathMacro)

Parameters

pathMacro string

Path macro to resolve

Returns

object

ResolvePath(string, bool)

Resolves the given alias path, applies the path segment to the given format string {0} for level 0.

public string ResolvePath(string format, bool escapeSpecChars = false)

Parameters

format string

Path pattern

escapeSpecChars bool

Indicates whether special characters in the automatically added part of path should be escaped for valid SQL LIKE query

Returns

string

SetValue(string, object)

Not implemented.

public bool SetValue(string pathMacro, object value)

Parameters

pathMacro string

Path macro

value object

New value

Returns

bool