Class ExtensionFunction
Represents executable function.
public class ExtensionFunction
- Inheritance
-
ExtensionFunction
- Inherited Members
Constructors
ExtensionFunction(string)
Creates new instance of ExtensionFunction with specified name.
public ExtensionFunction(string name)
Parameters
name
stringFunction name.
ExtensionFunction(string, Action)
Creates new instance of ExtensionFunction with specified name and method to execute.
public ExtensionFunction(string name, Action func)
Parameters
Properties
Name
Gets or sets function name.
public string Name { get; set; }
Property Value
Methods
Invoke()
Invokes function.
public virtual void Invoke()
ToString()
Returns a string that represents the current object.
public override string ToString()
Returns
- string
A string that represents the current object.