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

Tokenizer() protected method

Construct a token stream processing the given input using the given AttributeFactory.
protected Tokenizer ( AttributeFactory factory, TextReader input ) : System
factory AttributeFactory
input System.IO.TextReader
return System
        protected internal Tokenizer(AttributeFactory factory, TextReader input)
            : base(factory)
        {
            if (input == null)
            {
                throw new System.ArgumentNullException("input", "input must not be null");
            }
            this.InputPending = input;
        }

Same methods

Tokenizer::Tokenizer ( TextReader input ) : System