Search Results for

    Show / Hide Table of Contents

    Class MemberDeclarationForwarded

    AST Node representing a member declaration directly forwarding to a member acces. E.g. In

    From X In Timesheet Select New With { X.BeginTime } 

    "X.BeginTime" refers to such a member declaration.

    Inheritance
    System.Object
    Node
    MemberDeclaration
    MemberDeclarationForwarded
    Inherited Members
    System.Object.ToString()
    System.Object.Equals(System.Object)
    System.Object.Equals(System.Object, System.Object)
    System.Object.ReferenceEquals(System.Object, System.Object)
    System.Object.GetHashCode()
    System.Object.GetType()
    System.Object.MemberwiseClone()
    Namespace: TimeCockpit.Data.QueryLanguage.Syntax
    Assembly: TimeCockpit.Data.dll
    Syntax
    public class MemberDeclarationForwarded : MemberDeclaration

    Constructors

    MemberDeclarationForwarded(MemberAccess)

    Initializes a new instance of the MemberDeclarationForwarded class.

    Declaration
    public MemberDeclarationForwarded(MemberAccess access)
    Parameters
    Type Name Description
    MemberAccess access

    The member access.

    Properties

    MemberAccess

    Gets the MemberAccess.

    Declaration
    public MemberAccess MemberAccess { get; }
    Property Value
    Type Description
    MemberAccess

    Methods

    Accept(Visitor)

    Dispatches to the VisitMemberDeclarationForwarded(MemberDeclarationForwarded) method.

    Declaration
    public override Node Accept(Visitor visitor)
    Parameters
    Type Name Description
    Visitor visitor

    The visitor to dispatch to.

    Returns
    Type Description
    Node

    Returns the value returned by VisitMemberDeclarationForwarded(MemberDeclarationForwarded).

    Overrides
    Node.Accept(Visitor)
    In This Article
    Back to top Copyright © 2020 software architects gmbh