1 write to output
System.Data.SqlXml (1)
System\Xml\Xsl\XsltOld\SequentialOutput.cs (1)
85this.output = output;
20 references to output
System.Data.SqlXml (20)
System\Xml\Xsl\XsltOld\SequentialOutput.cs (20)
86this.isXmlOutput = this.output.Method == XsltOutput.OutputMethod.Xml; 87this.isHtmlOutput = this.output.Method == XsltOutput.OutputMethod.Html; 88this.cdataElements = this.output.CDataElements; 89this.indentOutput = this.output.Indent; 90this.outputDoctype = this.output.DoctypeSystem != null || (this.isHtmlOutput && this.output.DoctypePublic != null); 91this.outputXmlDecl = this.isXmlOutput && ! this.output.OmitXmlDeclaration && ! this.omitXmlDeclCalled; 128output.DoctypeSystem != null || 129output.Standalone 167Write(this.output.MediaType); 213Debug.Assert(this.output.DoctypeSystem != null || (this.isHtmlOutput && this.output.DoctypePublic != null), "We set outputDoctype == true only if"); 223if (output.DoctypePublic != null) { 226Write(output.DoctypePublic); 232if (output.DoctypeSystem != null) { 234Write(output.DoctypeSystem); 242Debug.Assert(this.isXmlOutput && ! this.output.OmitXmlDeclaration, "We set outputXmlDecl == true only if"); 254if (output.HasStandalone) { 256Write(output.Standalone ? "yes" : "no"); 300if (output.Method == XsltOutput.OutputMethod.Unknown) {