NVelocity.VelocityContext.InternalContainsKey C# (CSharp) Method

InternalContainsKey() public method

determines if there is a value for the given key
public InternalContainsKey ( Object key ) : bool
key Object name of value to check
return bool
        public override bool InternalContainsKey(Object key)
        {
            return context.ContainsKey(key);
        }