Apache Lucene.Net 2.4.0 Class Library API

Token.Term Method 

Returns the Token's term text. This method has a performance penalty because the text is stored internally in a char[]. If possible, use {@link #termBuffer()} and {@link #termLength()} directly instead. If you really need a string, use this method which is nothing more than a convenience cal to new String(token.TermBuffer(), o, token.TermLength()).

public string Term();

Return Value

See Also

Token Class | Lucene.Net.Analysis Namespace