NVelocity.Runtime.Parser.VelocityCharStream.BeginToken C# (CSharp) Method

BeginToken() public method

public BeginToken ( ) : bool
return bool
        public bool BeginToken()
        {
            tokenBegin = -1;
            bool success = ReadChar();
            if (success)
            {
                tokenBegin = bufferPosition;
            }

            return success;
        }