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