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