4 overrides of WriteCDataAsync
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
353
public override Task
WriteCDataAsync
(string text) {
System\Xml\Core\XmlRawWriterAsync.cs (1)
103
public override Task
WriteCDataAsync
( string text ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
612
public override async Task
WriteCDataAsync
(string text) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
50
public override Task
WriteCDataAsync
(string text) {
7 references to WriteCDataAsync
System.Xml (7)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
355
var task = coreWriter.
WriteCDataAsync
(text);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (2)
82
await writer.
WriteCDataAsync
( text.Substring( 0, i + 2 ) ).ConfigureAwait(false);
86
await writer.
WriteCDataAsync
( text ).ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
618
await writer.
WriteCDataAsync
(text).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
51
return writer.
WriteCDataAsync
(text);
System\Xml\Core\XmlWriterAsync.cs (2)
300
await
WriteCDataAsync
(reader.Value).ConfigureAwait(false);
360
await
WriteCDataAsync
(reader.Value).ConfigureAwait(false);