Lucene.Net.Analysis.Tokenizer.ReaderAnonymousInnerClassHelper.Read C# (CSharp) Method

Read() public method

public Read ( char cbuf, int off, int len ) : int
cbuf char
off int
len int
return int
            public override int Read(char[] cbuf, int off, int len)
            {
                throw new InvalidOperationException("TokenStream contract violation: reset()/close() call missing, " 
                    + "reset() called multiple times, or subclass does not call super.reset(). "
                    + "Please see Javadocs of TokenStream class for more information about the correct consuming workflow.");
            }
Tokenizer.ReaderAnonymousInnerClassHelper