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