4 overrides of WriteSurrogateCharEntityAsync
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
402public override Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) {
System\Xml\Core\XmlRawWriterAsync.cs (1)
113public override Task WriteSurrogateCharEntityAsync( char lowChar, char highChar ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
723public override async Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
78public override Task WriteSurrogateCharEntityAsync(char lowChar, char highChar) {
5 references to WriteSurrogateCharEntityAsync
System.Xml (5)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
404var task = coreWriter.WriteSurrogateCharEntityAsync(lowChar, highChar);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
155return writer.WriteSurrogateCharEntityAsync(lowChar, highChar);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
734await writer.WriteSurrogateCharEntityAsync(lowChar, highChar).ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriterHelpersAsync.cs (1)
64await writer.WriteSurrogateCharEntityAsync(chars[0], chars[1]).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
79return writer.WriteSurrogateCharEntityAsync(lowChar, highChar);