Table of Contents

Class Macro

Namespace
Dynamicweb.Extensibility.Macros
Assembly
Dynamicweb.Extensibility.dll
Abstract class inherited by all macro implementations.
[InheritedExport]
public abstract class Macro
Inheritance
Macro
Inherited Members

Properties

Name

Gets the name of the Macro.
public abstract string Name { get; }

Property Value

string
The name.

SupportedActions

Gets the supported actions.
public abstract IEnumerable<string> SupportedActions { get; }

Property Value

IEnumerable<string>
The supported actions.

Methods

Evaluate(string)

Evaluates the specified action.
public abstract object Evaluate(string action)

Parameters

action string
The action.

Returns

object
To top