In This Article

IFunction Interface

Represents a function.

public interface IFunction : IAstNode

Remarks

This type was generated by the Actipro Language Designer tool v22.1.0.0 (http://www.actiprosoftware.com).

Properties

Body

Gets or sets the body.

FunctionBody Body { get; set; }

Property Value

FunctionBody:

The body.

HasParameters

Returns whether the Parameters collection property contains at least one item.

bool HasParameters { get; }

Property Value

bool:

true if there is at least one item in the collection; otherwise, false.

IsAsync

Gets or sets the is async.

bool IsAsync { get; set; }

Property Value

bool:

The is async.

IsGenerator

Gets or sets the is generator.

bool IsGenerator { get; set; }

Property Value

bool:

The is generator.

Name

Gets or sets the name.

Identifier Name { get; set; }

Property Value

Identifier:

The name.

Parameters

Gets the parameters.

IList<IPattern> Parameters { get; }

Property Value

IList<IPattern>:

The parameters.

Inherited Members