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 176Write(_output.MediaType); 233Debug.Assert(_output.DoctypeSystem != null || (_isHtmlOutput && _output.DoctypePublic != null), "We set outputDoctype == true only if"); 245if (_output.DoctypePublic != null) 249Write(_output.DoctypePublic); 256if (_output.DoctypeSystem != null) 259Write(_output.DoctypeSystem); 268Debug.Assert(_isXmlOutput && !_output.OmitXmlDeclaration, "We set outputXmlDecl == true only if"); 281if (_output.HasStandalone) 284Write(_output.Standalone ? "yes" : "no"); 334if (_output.Method == XsltOutput.OutputMethod.Unknown)