System.Xml.Xsl.XsltOld.WriterOutput.WriterOutput C# (CSharp) Method

WriterOutput() private method

private WriterOutput ( Processor processor, XmlWriter writer ) : System
processor Processor
writer System.Xml.XmlWriter
return System
        internal WriterOutput(Processor processor, XmlWriter writer) {
            if (writer == null) {
                throw new ArgumentNullException("writer");
            }

            this.writer    = writer;
            this.processor = processor;
        }