6 overrides of ReadElementContentAsBase64Async
System.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
730public override Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count) {
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
255public override async Task< int > ReadElementContentAsBase64Async( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
270public override async Task< int > ReadElementContentAsBase64Async( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
479public override Task< int > ReadElementContentAsBase64Async( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
109public override async Task< int > ReadElementContentAsBase64Async( byte[] buffer, int index, int count ) {
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
351public override async Task< int > ReadElementContentAsBase64Async(byte[] buffer, int index, int count) {
3 references to ReadElementContentAsBase64Async
System.Xml (3)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
732var task = coreReader.ReadElementContentAsBase64Async(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
280return await base.ReadElementContentAsBase64Async( buffer, index, count ).ConfigureAwait(false); 290return await base.ReadElementContentAsBase64Async( buffer, index, count ).ConfigureAwait(false);