4 overrides of WriteCharEntityAsync
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
381
public override Task
WriteCharEntityAsync
(char ch) {
System\Xml\Core\XmlRawWriterAsync.cs (1)
108
public override Task
WriteCharEntityAsync
( char ch ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
703
public override async Task
WriteCharEntityAsync
(char ch) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
66
public override Task
WriteCharEntityAsync
(char ch) {
4 references to WriteCharEntityAsync
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
383
var task = coreWriter.
WriteCharEntityAsync
(ch);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
714
await writer.
WriteCharEntityAsync
(ch).ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriterHelpersAsync.cs (1)
60
await writer.
WriteCharEntityAsync
((char)item.data).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
67
return writer.
WriteCharEntityAsync
(ch);