5 overrides of WriteBase64Async
System.Runtime.Serialization (1)
System\Xml\XmlDictionaryWriter.cs (1)
34
public override Task
WriteBase64Async
(byte[] buffer, int index, int count)
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
430
public override Task
WriteBase64Async
(byte[] buffer, int index, int count) {
System\Xml\Core\XmlRawWriterAsync.cs (1)
78
public override Task
WriteBase64Async
( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
893
public override Task
WriteBase64Async
(byte[] buffer, int index, int count) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
94
public override Task
WriteBase64Async
(byte[] buffer, int index, int count) {
4 references to WriteBase64Async
System.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
432
var task = coreWriter.
WriteBase64Async
(buffer, index, count);
System\Xml\Core\XmlWellFormedWriterAsync.cs (2)
911
return TryReturnTask(writer.
WriteBase64Async
(buffer, index, count));
928
await writer.
WriteBase64Async
(buffer, index, count).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
95
return writer.
WriteBase64Async
(buffer, index, count);