DataDictionary.Interpreter.Call.Reads C# (CSharp) Method

Reads() public method

Indicates whether this call may read a given variable
public Reads ( ITypedElement variable ) : bool
variable ITypedElement
return bool
        public bool Reads(ITypedElement variable)
        {
            bool retVal = false;

            Function function = Called.GetStaticCallable() as Function;
            if (function != null)
            {
                retVal = function.Reads(variable);
            }

            return retVal;
        }