11 references to Yes
System.Xml (11)
System\Xml\Core\QueryOutputWriter.cs (1)
50
if (settings.AutoXmlDeclaration && settings.Standalone == XmlStandalone.
Yes
)
System\Xml\Core\QueryOutputWriterV1.cs (2)
54
if (settings.Standalone == XmlStandalone.
Yes
) {
60
if (settings.Standalone == XmlStandalone.
Yes
) {
System\Xml\Core\XmlEncodedRawTextWriter.cs (1)
244
RawText( standalone == XmlStandalone.
Yes
? "yes" : "no" );
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
47
await RawTextAsync( standalone == XmlStandalone.
Yes
? "yes" : "no" ).ConfigureAwait(false);
System\Xml\Core\XmlUtf8RawTextWriter.cs (1)
200
RawText( standalone == XmlStandalone.
Yes
? "yes" : "no" );
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
45
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)
25
return WriteStartDocumentImplAsync(standalone ? XmlStandalone.
Yes
: XmlStandalone.No);
System\Xml\Core\XmlWriterSettings.cs (1)
428
docTypeSystem != null || standalone == XmlStandalone.
Yes
;
System\Xml\Dom\DocumentXmlWriter.cs (1)
113
XmlNode node = document.CreateXmlDeclaration("1.0", string.Empty, standalone == XmlStandalone.
Yes
? "yes" : "no");