Class MacroMethodContainer
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Container for method extensions of an arbitrary object used by MacroEngine.
public class MacroMethodContainer : MacroExtensionContainer<MacroMethodContainer, MacroMethod>
- Inheritance
-
objectMacroMethodContainer
- Inherited Members
- Extension Methods
Properties
RegisteredMethods
Returns enumerable of all methods.
public IEnumerable<MacroMethod> RegisteredMethods { get; }
Property Value
- IEnumerable<MacroMethod>
Methods
CompareDateTime(DateTime, DateTime, string)
Compares DateTime values.
protected static object CompareDateTime(DateTime date1, DateTime date2, string op)
Parameters
date1
DateTimeDateTime to compare
date2
DateTimeDateTime to compare
op
stringComparison operator
Returns
- object
CompareDouble(double, double, string)
Compares double numbers.
protected static object CompareDouble(double number1, double number2, string op)
Parameters
number1
doubleNumber to compare
number2
doubleNumber to compare
op
stringComparison operator
Returns
- object
CompareString(string, string, string, EvaluationContext)
Compares strings (lexicographically).
protected static object CompareString(string str1, string str2, string op, EvaluationContext context)
Parameters
str1
stringString to compare
str2
stringString to compare
op
stringComparison operator
context
EvaluationContextEvaluation context
Returns
- object
CompareTimeSpan(TimeSpan, TimeSpan, string)
Compares TimeSpan values.
protected static object CompareTimeSpan(TimeSpan span1, TimeSpan span2, string op)
Parameters
span1
TimeSpanTimeSpan to compare
span2
TimeSpanTimeSpan to compare
op
stringComparison operator
Returns
- object
CompareValues(EvaluationContext, string, params object[])
Returns true if first parameter is lower than or equal to second.
protected static object CompareValues(EvaluationContext context, string op, params object[] parametersToCompare)
Parameters
context
EvaluationContextEvaluation context with child resolver
op
stringOperator
parametersToCompare
object[]First two parameters are numbers to compare
Returns
- object
GetBoolParam(object)
Returns the parameter converted to boolean or false if parameter is not boolean.
protected static bool GetBoolParam(object parameter)
Parameters
parameter
objectParameter to convert
Returns
- bool
GetDecimalParam(object, string)
Returns the parameter converted to decimal or zero if parameter is not decimal.
protected static decimal GetDecimalParam(object parameter, string culture = null)
Parameters
parameter
objectParameter to convert
culture
stringCulture to use to convert object to double
Returns
- decimal
GetDoubleParam(object, string)
Returns the parameter converted to double or zero if parameter is not double.
protected static double GetDoubleParam(object parameter, string culture = null)
Parameters
parameter
objectParameter to convert
culture
stringCulture to use to convert object to double
Returns
- double
GetGuidParam(object)
Converts the parameter to GUID. Returns Guid.Empty if parameter is not GUID.
protected static Guid GetGuidParam(object parameter)
Parameters
parameter
objectParameter to convert
Returns
- Guid
GetIntParam(object)
Returns the parameter converted to integer or zero if parameter is not integer.
protected static int GetIntParam(object parameter)
Parameters
parameter
objectParameter to convert
Returns
- int
GetLazyParamValue(object, EvaluationContext, out bool)
Gets the lazy parameter value by evaluating it
protected static object GetLazyParamValue(object parameter, EvaluationContext evalContext, out bool securityPassed)
Parameters
parameter
objectParameter to evaluate
evalContext
EvaluationContextEvaluation context
securityPassed
boolIndicates whether the security check passed
Returns
- object
GetMethod(string)
Returns a method of given name (return null if specified method does not exist).
public MacroMethod GetMethod(string name)
Parameters
name
stringMethod name
Returns
GetMethodForObject(object, string)
Returns macro method object of given name if registered for specified object. It loops through all MacroMethodContainer extensions of given object type. Returns null if there is no such Extension for given object.
public static MacroMethod GetMethodForObject(object obj, string name)
Parameters
obj
objectObject to check
name
stringName of the method
Returns
GetMethodsForObject(object)
Returns list of macro method extension registered for specified object. Returns null if there is no such extension for given object.
public static IEnumerable<MacroMethod> GetMethodsForObject(object obj)
Parameters
obj
objectObject to check
Returns
- IEnumerable<MacroMethod>
GetOptionalParam<T>(object[], int, T, CultureInfo)
Gets the optional param of the given type
protected static T GetOptionalParam<T>(object[] parameters, int index, T defaultValue, CultureInfo culture = null)
Parameters
parameters
object[]List of method parameters
index
intParameter index
defaultValue
TDefault value in case conversion fails or parameter is not available
culture
CultureInfoCulture for the conversion
Returns
- T
Type Parameters
T
GetParamValue<T>(object[], int, T)
Returns the index-th parameter evaluated using given resolver.
protected static T GetParamValue<T>(object[] parameters, int index, T defaultValue)
Parameters
parameters
object[]Method parameters
index
intIndex of the parameter within the array
defaultValue
TDefault value which will be used if the parameter is not present
Returns
- T
Type Parameters
T
GetStringParam(object, string)
Returns the parameter converted to string or empty string.
protected static string GetStringParam(object parameter, string culture = null)
Parameters
parameter
objectParameter to convert
culture
stringCulture to use to convert object to string
Returns
- string
RegisterExtensions()
Registers all the methods.
protected override void RegisterExtensions()
RegisterMethod(MacroMethod)
Registers the given method.
public void RegisterMethod(MacroMethod method)
Parameters
method
MacroMethodMethod to register
RegisterMethodInternal(string, Func<EvaluationContext, object[], object>, Type, string, int, object[,], string[])
Registers the given method within the method table.
protected void RegisterMethodInternal(string name, Func<EvaluationContext, object[], object> method, Type type, string comment, int minimumParameters, object[,] parameterDefinition, string[] specialParameters = null)
Parameters
name
stringMethod name
method
Func<EvaluationContext, object[], object>Method delegate
type
TypeReturn type of the method
comment
stringComment for the method
minimumParameters
intMinimal number of parameters needed to call the method
parameterDefinition
object[,]Parameter definition in format {{name, type, comment}, {name, type, comment}}
specialParameters
string[]A list of special parameters needed to be supplied by resolver
RegisterMethodInternal(string[], Func<EvaluationContext, object[], object>, Type, string, int, object[,], string[])
Registers the given method within the method table.
protected void RegisterMethodInternal(string[] names, Func<EvaluationContext, object[], object> method, Type type, string comment, int minimumParameters, object[,] parameterDefinition, string[] specialParameters = null)
Parameters
names
string[]Method names to register
method
Func<EvaluationContext, object[], object>Method delegate
type
TypeReturn type of the method
comment
stringComment for the method
minimumParameters
intMinimal number of parameters needed to call the method
parameterDefinition
object[,]Parameter definition in format {{name, type, comment}, {name, type, comment}}
specialParameters
string[]A list of special parameters needed to be supplied by resolver
RegisterMethods()
Registers all the methods.
protected virtual void RegisterMethods()
RegisterMethods(params MacroMethod[])
Registers the given methods.
public void RegisterMethods(params MacroMethod[] methods)
Parameters
methods
MacroMethod[]Methods to register
UnwrapContainer(object[])
Unwraps all DateTime and TimeSpan containers to their original system value.
protected static object[] UnwrapContainer(object[] parameters)
Parameters
parameters
object[]Parameters to process
Returns
- object[]