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