NVelocity.VelocityContext.InternalGetKeys C# (CSharp) Method

InternalGetKeys() public method

returns array of keys
public InternalGetKeys ( ) : Object[]
return Object[]
        public override Object[] InternalGetKeys()
        {
            Object[] keys = new object[context.Keys.Count];
            context.Keys.CopyTo(keys, 0);
            return keys;
        }