5 overrides of WriteCDataAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
145public override Task WriteCDataAsync(string? text)
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
419public override Task WriteCDataAsync(string? text)
System\Xml\Core\XmlRawWriterAsync.cs (1)
106public override Task WriteCDataAsync(string? text)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
753public override async Task WriteCDataAsync(string? text)
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
60public override Task WriteCDataAsync(string? text)
9 references to WriteCDataAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
148return SetLastTask(CoreWriter.WriteCDataAsync(text));
System.Private.Xml (7)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
422var task = _coreWriter.WriteCDataAsync(text);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (2)
108await writer.WriteCDataAsync(text.Substring(0, i + 2)).ConfigureAwait(false); 113await writer.WriteCDataAsync(text).ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
760await _writer.WriteCDataAsync(text).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
62return writer.WriteCDataAsync(text);
System\Xml\Core\XmlWriterAsync.cs (2)
332await WriteCDataAsync(reader.Value).ConfigureAwait(false); 395await WriteCDataAsync(reader.Value).ConfigureAwait(false);
System.Private.Xml.Linq (1)
System\Xml\Linq\XCData.cs (1)
73return writer.WriteCDataAsync(text);