4 overrides of WriteWhitespaceAsync
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
388
public override Task
WriteWhitespaceAsync
(string ws) {
System\Xml\Core\XmlRawWriterAsync.cs (1)
118
public override Task
WriteWhitespaceAsync
( string ws ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
743
public override async Task
WriteWhitespaceAsync
(string ws) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
70
public override Task
WriteWhitespaceAsync
(string ws) {
8 references to WriteWhitespaceAsync
System.Xml (8)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
390
var task = coreWriter.
WriteWhitespaceAsync
(ws);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
139
return writer.
WriteWhitespaceAsync
(ws);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
757
await writer.
WriteWhitespaceAsync
(ws).ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriterHelpersAsync.cs (1)
67
await writer.
WriteWhitespaceAsync
((string)item.data).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
71
return writer.
WriteWhitespaceAsync
(ws);
System\Xml\Core\XmlWriterAsync.cs (3)
297
await
WriteWhitespaceAsync
(reader.Value).ConfigureAwait(false);
357
await
WriteWhitespaceAsync
(await reader.GetValueAsync().ConfigureAwait(false)).ConfigureAwait(false);
430
await
WriteWhitespaceAsync
(navigator.Value).ConfigureAwait(false);