5 overrides of WriteWhitespaceAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
463
public override Task
WriteWhitespaceAsync
(string? ws)
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
459
public override Task
WriteWhitespaceAsync
(string? ws)
System\Xml\Core\XmlRawWriterAsync.cs (1)
124
public override Task
WriteWhitespaceAsync
(string? ws)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
907
public override async Task
WriteWhitespaceAsync
(string? ws)
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
85
public override Task
WriteWhitespaceAsync
(string? ws)
11 references to WriteWhitespaceAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
466
return SetLastTask(CoreWriter.
WriteWhitespaceAsync
(ws));
System.Private.Xml (8)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
462
var task = _coreWriter.
WriteWhitespaceAsync
(ws);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
184
return writer.
WriteWhitespaceAsync
(ws);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
925
await _writer.
WriteWhitespaceAsync
(ws).ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriterHelpersAsync.cs (1)
79
await writer.
WriteWhitespaceAsync
((string)item.data).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
87
return writer.
WriteWhitespaceAsync
(ws);
System\Xml\Core\XmlWriterAsync.cs (3)
329
await
WriteWhitespaceAsync
(reader.Value).ConfigureAwait(false);
392
await
WriteWhitespaceAsync
(await reader.GetValueAsync().ConfigureAwait(false)).ConfigureAwait(false);
473
await
WriteWhitespaceAsync
(navigator.Value).ConfigureAwait(false);
System.Private.Xml.Linq (2)
System\Xml\Linq\XContainer.cs (1)
1332
tWrite = writer.
WriteWhitespaceAsync
(stringContent);
System\Xml\Linq\XText.cs (1)
114
writer.
WriteWhitespaceAsync
(text) :