Lucene.Net.Analysis.CharFilter.Skip C# (CSharp) Method

Skip() public method

Skips characters. This method will block until some characters are available, an I/O error occurs, or the end of the stream is reached. LUCENENET specific. Moved here from the Java Reader class so it can be overridden to provide reader buffering.
public Skip ( int n ) : long
n int The number of characters to skip
return long
        public virtual long Skip(int n)
        {
            throw new NotSupportedException("Skip() not supported");
        }