XSpect.Yacq.Expressions.YacqExpression.IsCached C# (CSharp) Méthode

IsCached() private méthode

private IsCached ( SymbolTable symbols, Type expectedType ) : System.Boolean
symbols XSpect.Yacq.Symbols.SymbolTable
expectedType System.Type
Résultat System.Boolean
        internal Boolean IsCached(SymbolTable symbols, Type expectedType)
        {
            return this._reducedExpressions.ContainsKey(this.CreateSymbolTable(symbols).AllHash
                ^ (expectedType != null ? expectedType.GetHashCode() : 0)
            );
        }