In This Article

MemberAccess Class

Represents a member access.

public class MemberAccess : Expression, IAstNode
Inheritance:
Object AstNodeBase Expression Object
Implements:
IAstNode

Remarks

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

Constructors

MemberAccess()

public MemberAccess()

Properties

Alias

Gets or sets the alias.

public string Alias { get; set; }

Property Value

String:

The alias.

Id

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

public override int Id { get; }

Property Value

Int32:

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

Kind

Gets or sets the kind.

public MemberAccessKind Kind { get; set; }

Property Value

MemberAccessKind:

The kind.

Name

Gets or sets the name.

public SimpleName Name { get; set; }

Property Value

SimpleName:

The name.

TargetExpression

Gets or sets the target expression.

public Expression TargetExpression { get; set; }

Property Value

Expression:

The target expression.

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