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

Fill() public method

Fills the list provided with the element matching the filter provided
public Fill ( List retVal, DataDictionary.Interpreter.Filter.BaseFilter filter ) : void
retVal List The list to be filled with the element matching the condition expressed in the filter
filter DataDictionary.Interpreter.Filter.BaseFilter The filter to apply
return void
        public override void Fill(List<INamable> retVal, BaseFilter filter)
        {
            foreach (Expression expression in NamedActualParameters.Values)
            {
                expression.Fill(retVal, filter);
            }

            foreach (Expression expression in ActualParameters)
            {
                expression.Fill(retVal, filter);
            }
        }