iTextSharp.tool.xml.pipeline.end.ElementHandlerPipeline.Consume C# (CSharp) Method

Consume() private method

private Consume ( IWorkerContext context, ProcessObject po ) : void
context IWorkerContext
po iTextSharp.tool.xml.ProcessObject
return void
        private void Consume(IWorkerContext context, ProcessObject po)
        {
            if (po.ContainsWritable()) {
                IWritable w = null;
                while ( null != (w =po.Poll())) {
                    handler.Add(w);
                }
            }
        }