Table of Contents

Class QueryJoinClause

Namespace
ICSharpCode.Decompiler.CSharp.Syntax
Assembly
ICSharpCode.Decompiler.dll

Represents a join or group join clause.

public class QueryJoinClause : QueryClause, IAnnotatable, IFreezable, INode, ICloneable
Inheritance
QueryJoinClause
Implements
Inherited Members
Extension Methods

Constructors

QueryJoinClause()

public QueryJoinClause()

Fields

EqualsExpressionRole

public static readonly Role<Expression> EqualsExpressionRole

Field Value

Role<Expression>

EqualsKeywordRole

public static readonly TokenRole EqualsKeywordRole

Field Value

TokenRole

InExpressionRole

public static readonly Role<Expression> InExpressionRole

Field Value

Role<Expression>

InKeywordRole

public static readonly TokenRole InKeywordRole

Field Value

TokenRole

IntoIdentifierRole

public static readonly Role<Identifier> IntoIdentifierRole

Field Value

Role<Identifier>

IntoKeywordRole

public static readonly TokenRole IntoKeywordRole

Field Value

TokenRole

JoinIdentifierRole

public static readonly Role<Identifier> JoinIdentifierRole

Field Value

Role<Identifier>

JoinKeywordRole

public static readonly TokenRole JoinKeywordRole

Field Value

TokenRole

OnExpressionRole

public static readonly Role<Expression> OnExpressionRole

Field Value

Role<Expression>

OnKeywordRole

public static readonly TokenRole OnKeywordRole

Field Value

TokenRole

TypeRole

public static readonly Role<AstType> TypeRole

Field Value

Role<AstType>

Properties

EqualsExpression

public Expression EqualsExpression { get; set; }

Property Value

Expression

EqualsKeyword

public CSharpTokenNode EqualsKeyword { get; }

Property Value

CSharpTokenNode

InExpression

public Expression InExpression { get; set; }

Property Value

Expression

InKeyword

public CSharpTokenNode InKeyword { get; }

Property Value

CSharpTokenNode

IntoIdentifier

public string IntoIdentifier { get; set; }

Property Value

string

IntoIdentifierToken

public Identifier IntoIdentifierToken { get; }

Property Value

Identifier

IntoKeyword

public CSharpTokenNode IntoKeyword { get; }

Property Value

CSharpTokenNode

IsGroupJoin

public bool IsGroupJoin { get; }

Property Value

bool

JoinIdentifier

public string JoinIdentifier { get; set; }

Property Value

string

JoinIdentifierToken

public Identifier JoinIdentifierToken { get; }

Property Value

Identifier

JoinKeyword

public CSharpTokenNode JoinKeyword { get; }

Property Value

CSharpTokenNode

OnExpression

public Expression OnExpression { get; set; }

Property Value

Expression

OnKeyword

public CSharpTokenNode OnKeyword { get; }

Property Value

CSharpTokenNode

Type

public AstType Type { get; set; }

Property Value

AstType

Methods

AcceptVisitor(IAstVisitor)

public override void AcceptVisitor(IAstVisitor visitor)

Parameters

visitor IAstVisitor

AcceptVisitor<T>(IAstVisitor<T>)

public override T AcceptVisitor<T>(IAstVisitor<T> visitor)

Parameters

visitor IAstVisitor<T>

Returns

T

Type Parameters

T

AcceptVisitor<T, S>(IAstVisitor<T, S>, T)

public override S AcceptVisitor<T, S>(IAstVisitor<T, S> visitor, T data)

Parameters

visitor IAstVisitor<T, S>
data T

Returns

S

Type Parameters

T
S

DoMatch(AstNode, Match)

protected override bool DoMatch(AstNode other, Match match)

Parameters

other AstNode
match Match

Returns

bool