12 references to Yes
System.Private.Xml (12)
System\Xml\Core\QueryOutputWriter.cs (1)
53
if (settings.AutoXmlDeclaration && settings.Standalone == XmlStandalone.
Yes
)
System\Xml\Core\QueryOutputWriterV1.cs (2)
53
if (settings.Standalone == XmlStandalone.
Yes
)
60
if (settings.Standalone == XmlStandalone.
Yes
)
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
234
RawText(standalone == XmlStandalone.
Yes
? "yes" : "no");
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
56
await RawTextAsync(standalone == XmlStandalone.
Yes
? "yes" : "no").ConfigureAwait(false);
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
180
RawText(standalone == XmlStandalone.
Yes
? "yes" : "no");
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
55
await RawTextAsync(standalone == XmlStandalone.
Yes
? "yes" : "no").ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriter.cs (1)
328
WriteStartDocumentImpl(standalone ? XmlStandalone.
Yes
: XmlStandalone.No);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
28
return WriteStartDocumentImplAsync(standalone ? XmlStandalone.
Yes
: XmlStandalone.No);
System\Xml\Core\XmlWriterSettings.cs (1)
331
private bool IsQuerySpecific => CDataSectionElements.Count != 0 || _docTypePublic != null || _docTypeSystem != null || _standalone == XmlStandalone.
Yes
;
System\Xml\Dom\DocumentXmlWriter.cs (1)
121
XmlNode node = _document.CreateXmlDeclaration("1.0", string.Empty, standalone == XmlStandalone.
Yes
? "yes" : "no");
System\Xml\Xsl\Xslt\XsltLoader.cs (1)
741
XmlStandalone standalone = (triState == TriState.True) ? XmlStandalone.
Yes
: XmlStandalone.No;