Invokes the parsing engine.
try {
CSeqHeader c = new CSeqHeader();
this.lexer.match(TokenTypes.CSEQ);
this.lexer.SPorHT();
this.lexer.match(':");
this.lexer.SPorHT();
String number = this.lexer.number();
c.setSequenceNumber(Integer.parseInt(number));
this.lexer.SPorHT();
String m = method();
c.setMethod(m);
this.lexer.SPorHT();
this.lexer.match('\n");
return c;
} catch (NumberFormatException ex) {
throw createParseException("Number format exception");
}