4 overrides of WriteCharsAsync
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
409
public override Task
WriteCharsAsync
(char[] buffer, int index, int count) {
System\Xml\Core\XmlRawWriterAsync.cs (1)
123
public override Task
WriteCharsAsync
( char[] buffer, int index, int count ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
815
public override async Task
WriteCharsAsync
(char[] buffer, int index, int count) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
82
public override Task
WriteCharsAsync
(char[] buffer, int index, int count) {
8 references to WriteCharsAsync
System.Xml (8)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
411
var task = coreWriter.
WriteCharsAsync
(buffer, index, count);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
181
return writer.
WriteCharsAsync
( buffer, index, count );
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
835
await writer.
WriteCharsAsync
(buffer, index, count).ConfigureAwait(false);
System\Xml\Core\XmlWellFormedWriterHelpersAsync.cs (2)
74
await writer.
WriteCharsAsync
(bufChunk.buffer, bufChunk.index, bufChunk.count).ConfigureAwait(false);
81
await writer.
WriteCharsAsync
(bufChunk.buffer, bufChunk.index, bufChunk.count).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
83
return writer.
WriteCharsAsync
(buffer, index, count);
System\Xml\Core\XmlWriterAsync.cs (2)
288
await this.
WriteCharsAsync
(writeNodeBuffer, 0, read).ConfigureAwait(false);
347
await this.
WriteCharsAsync
(writeNodeBuffer, 0, read).ConfigureAwait(false);