1 write to _output
System.Private.Xml (1)
System\Xml\Xsl\XsltOld\SequentialOutput.cs (1)
80
_output
= output;
21 references to _output
System.Private.Xml (21)
System\Xml\Xsl\XsltOld\SequentialOutput.cs (21)
77
[MemberNotNull(nameof(
_output
))]
81
_isXmlOutput =
_output
.Method == XsltOutput.OutputMethod.Xml;
82
_isHtmlOutput =
_output
.Method == XsltOutput.OutputMethod.Html;
83
_cdataElements =
_output
.CDataElements;
84
_indentOutput =
_output
.Indent;
85
_outputDoctype =
_output
.DoctypeSystem != null || (_isHtmlOutput &&
_output
.DoctypePublic != null);
86
_outputXmlDecl = _isXmlOutput && !
_output
.OmitXmlDeclaration && !_omitXmlDeclCalled;
131
_output
.DoctypeSystem != null ||
132
_output
.Standalone
176
Write(
_output
.MediaType);
233
Debug.Assert(
_output
.DoctypeSystem != null || (_isHtmlOutput &&
_output
.DoctypePublic != null), "We set outputDoctype == true only if");
245
if (
_output
.DoctypePublic != null)
249
Write(
_output
.DoctypePublic);
256
if (
_output
.DoctypeSystem != null)
259
Write(
_output
.DoctypeSystem);
268
Debug.Assert(_isXmlOutput && !
_output
.OmitXmlDeclaration, "We set outputXmlDecl == true only if");
281
if (
_output
.HasStandalone)
284
Write(
_output
.Standalone ? "yes" : "no");
334
if (
_output
.Method == XsltOutput.OutputMethod.Unknown)