Signum.Engine.Linq.UsedAliasGatherer.Externals C# (CSharp) Method

Externals() public static method

public static Externals ( Expression source ) : HashSet
source System.Linq.Expressions.Expression
return HashSet
        public static HashSet<Alias> Externals(Expression source)
        {
            UsedAliasGatherer ap = new UsedAliasGatherer();

            ap.Visit(source);

            return ap.externals;
        }