5 overrides of WriteBase64Async
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryWriter.cs (1)
77public override Task WriteBase64Async(byte[] buffer, int index, int count)
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
507public override Task WriteBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlRawWriterAsync.cs (1)
79public override Task WriteBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
1075public override Task WriteBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
115public override Task WriteBase64Async(byte[] buffer, int index, int count)
4 references to WriteBase64Async
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
510var task = _coreWriter.WriteBase64Async(buffer, index, count);
System\Xml\Core\XmlWellFormedWriterAsync.cs (2)
1088return TryReturnTask(_writer.WriteBase64Async(buffer, index, count)); 1107await _writer.WriteBase64Async(buffer, index, count).ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
117return writer.WriteBase64Async(buffer, index, count);