Class PathMacroContainer
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Object encapsulating path macro resolving as ISimpleDataContainer.
public class PathMacroContainer : ISimpleDataContainer
- Inheritance
-
objectPathMacroContainer
- Implements
- Extension Methods
Constructors
PathMacroContainer(MacroResolver)
Creates new instance of PathMacroContainer.
public PathMacroContainer(MacroResolver resolver)
Parameters
resolver
MacroResolverResolver 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
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
stringColumn 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
stringPath 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
stringPath pattern
escapeSpecChars
boolIndicates 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
stringPath macro
value
objectNew value
Returns
- bool