DataDictionary.Rules.Action.Reads C# (CSharp) Method

Reads() public method

Indicates whether this action reads the variable
public Reads ( ITypedElement variable ) : bool
variable ITypedElement
return bool
        public bool Reads(ITypedElement variable)
        {
            if (Statement != null)
            {
                return Statement.Reads(variable);
            }

            return false;
        }