In This Article

Parameter Class

Represents a parameter.

public class Parameter : AstNodeBase, IAstNode
Inheritance:
object AstNodeBase object
Implements:
IAstNode

Remarks

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

Constructors

Parameter()

Initializes an instance of the class.

public Parameter()

Properties

AnnotationExpression

Gets or sets the annotation expression.

public Expression AnnotationExpression { get; set; }

Property Value

Expression:

The annotation expression.

ChildParameters

Gets the child parameters.

public IList<Parameter> ChildParameters { get; }

Property Value

IList<Parameter>:

The child parameters.

HasChildParameters

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

public bool HasChildParameters { get; }

Property Value

bool:

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

Id

Gets the An integer value that identifies the type of AST node.

public override int Id { get; }

Property Value

int:

The An integer value that identifies the type of AST node.

InitializerExpression

Gets or sets the initializer expression.

public Expression InitializerExpression { get; set; }

Property Value

Expression:

The initializer expression.

Kind

Gets or sets the kind.

public ParameterKind Kind { get; set; }

Property Value

ParameterKind:

The kind.

Name

Gets or sets the name.

public SimpleName Name { get; set; }

Property Value

SimpleName:

The name.

Methods

GetChildrenEnumerator()

Retrieves an IEnumerator object that can iterate the child IAstNode objects in this node.

protected override IEnumerator<IAstNode> GetChildrenEnumerator()

Returns

IEnumerator<IAstNode>:

An IEnumerator object that can iterate the child IAstNode objects in this node.

Inherited Members