System.Xml.Xsl.XsltOld.WriterOutput.WriterOutput C# (CSharp) 메소드

WriterOutput() 개인적인 메소드

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

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