Class ActionFunction
Class that represents a script function.
Inheritance
System.Object
ActionFunction
Inherited Members
System.Object.Equals(System.Object)
System.Object.Equals(System.Object, System.Object)
System.Object.GetHashCode()
System.Object.GetType()
System.Object.MemberwiseClone()
System.Object.ReferenceEquals(System.Object, System.Object)
System.Object.ToString()
Namespace: Fibula.Parsing.Contracts
Assembly: Fibula.Parsing.Contracts.dll
Syntax
public class ActionFunction
Constructors
| Improve this Doc View SourceActionFunction(String, Object[])
Initializes a new instance of the ActionFunction class.
Declaration
public ActionFunction(string name, params object[] parameters)
Parameters
Type | Name | Description |
---|---|---|
System.String | name | The name of the function. |
System.Object[] | parameters | The function parameters. |
Properties
| Improve this Doc View SourceName
Gets the name of the function.
Declaration
public string Name { get; }
Property Value
Type | Description |
---|---|
System.String |
Parameters
Gets the function's parameters.
Declaration
public object[] Parameters { get; }
Property Value
Type | Description |
---|---|
System.Object[] |