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