C# Class LinqToWiki.Expressions.UsedPropertiesGatherer

Gathers information about properties of an object used in an expression.
Inheritance: System.Linq.Expressions.ExpressionVisitor
Exibir arquivo Open project: svick/LINQ-to-Wiki Class Usage Examples

Public Methods

Method Description
Gather ( Expression haystack, Expression needle ) : void

Gathers information about properties of needle in haystack.

Visit ( Expression node ) : Expression

Protected Methods

Method Description
VisitMember ( MemberExpression node ) : Expression

Method Details

Gather() public method

Gathers information about properties of needle in haystack.
public Gather ( Expression haystack, Expression needle ) : void
haystack System.Linq.Expressions.Expression
needle System.Linq.Expressions.Expression
return void

Visit() public method

public Visit ( Expression node ) : Expression
node System.Linq.Expressions.Expression
return System.Linq.Expressions.Expression

VisitMember() protected method

protected VisitMember ( MemberExpression node ) : Expression
node System.Linq.Expressions.MemberExpression
return System.Linq.Expressions.Expression