Class MacroMethods
- Namespace
- CMS.MacroEngine
- Assembly
- CMS.MacroEngine.dll
Macro methods.
public class MacroMethods : CoreMethods
- Inheritance
-
objectMacroMethods
- Inherited Members
- Extension Methods
Fields
mAnyTypeMethods
List of methods which are available for any type
protected static List<MacroMethod> mAnyTypeMethods
Field Value
- List<MacroMethod>
mMethods
Table of available methods.
protected static SafeDictionary<string, MacroMethod> mMethods
Field Value
- SafeDictionary<string, MacroMethod>
mMethodsByType
Index of methods available for specified type.
protected static SafeDictionary<Type, List<MacroMethod>> mMethodsByType
Field Value
- SafeDictionary<Type, List<MacroMethod>>
Properties
Methods
Gets the hashtable with all methods.
public static SafeDictionary<string, MacroMethod> Methods { get; }
Property Value
- SafeDictionary<string, MacroMethod>
Methods
AreMethodsRegistered()
Returns true if methods are registered in the hashtable of all methods.
public static bool AreMethodsRegistered()
Returns
- bool
ExecuteMethod(string, MacroResolver, params object[])
Executes the given method with parameters.
public static object ExecuteMethod(string name, MacroResolver resolver, params object[] parameters)
Parameters
name
stringMethod name
resolver
MacroResolverResolver object
parameters
object[]Method parameters
Returns
- object
ExecuteMethod(string, params object[])
Executes the given method with parameters.
public static object ExecuteMethod(string name, params object[] parameters)
Parameters
name
stringMethod name
parameters
object[]Method parameters
Returns
- object
GetMethod(string)
Gets the specific method delegate.
public static MacroMethod GetMethod(string name)
Parameters
name
stringMethod name
Returns
GetMethodsForObject(object)
Returns the list of macro methods suitable for specified object.
public static List<MacroMethod> GetMethodsForObject(object obj)
Parameters
obj
objectObject for which the list should be returned
Returns
- List<MacroMethod>
GetMethodsForObject(object, bool)
Returns the list of macro methods suitable for specified object.
public static List<MacroMethod> GetMethodsForObject(object obj, bool includeAnyTypeMethods)
Parameters
obj
objectObject for which the list should be returned
includeAnyTypeMethods
boolIf true, methods for any type are included as well
Returns
- List<MacroMethod>
GetMethodsForObject(object, bool, bool)
Returns the list of macro methods suitable for specified object.
public static List<MacroMethod> GetMethodsForObject(object obj, bool includeAnyTypeMethods, bool exactType)
Parameters
obj
objectObject for which the list should be returned
includeAnyTypeMethods
boolIf true, methods for any type are included as well
exactType
boolIf true only methods with exactly the same type are returned (= no inherited members)
Returns
- List<MacroMethod>
RegisterMethod(MacroMethod)
Registers the given method within the method table.
public static void RegisterMethod(MacroMethod method)
Parameters
method
MacroMethodMacro method to register
RegisterMethodInternal(string, Func<EvaluationContext, object[], object>, Type, string, int, object[,], string[], List<Type>)
Registers the given method within the method table.
protected static void RegisterMethodInternal(string name, Func<EvaluationContext, object[], object> method, Type type, string comment, int minimumParameters, object[,] parameterDefinition, string[] specialParameters, List<Type> allowedTypes)
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
allowedTypes
List<Type>List of types for which the method is applicable (set to null for all types to be allowed)
RegisterMethodInternal(string, Func<MacroResolver, object[], object>, Type, string, int, object[,], string[], List<Type>)
Registers the given method within the method table.
protected static void RegisterMethodInternal(string name, Func<MacroResolver, object[], object> method, Type type, string comment, int minimumParameters, object[,] parameterDefinition, string[] specialParameters, List<Type> allowedTypes)
Parameters
name
stringMethod name
method
Func<MacroResolver, 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
allowedTypes
List<Type>List of types for which the method is applicable (set to null for all types to be allowed)
RegisterMethodInternal(string, Func<object[], object>, Type, string, int, object[,], string[], List<Type>)
Registers the given method within the method table.
protected static void RegisterMethodInternal(string name, Func<object[], object> method, Type type, string comment, int minimumParameters, object[,] parameterDefinition, string[] specialParameters, List<Type> allowedTypes)
Parameters
name
stringMethod name
method
Func<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
allowedTypes
List<Type>List of types for which the method is applicable (set to null for all types to be allowed)