6 overrides of ReadElementContentAsBase64Async
System.Private.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
859public override Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
305public override Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
312public override async Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
508public override Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
121public override async Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
436public override async Task<int> ReadElementContentAsBase64Async(byte[] buffer, int index, int count)
3 references to ReadElementContentAsBase64Async
System.Private.Xml (3)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
862var task = _coreReader.ReadElementContentAsBase64Async(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
330return await base.ReadElementContentAsBase64Async(buffer, index, count).ConfigureAwait(false); 343return await base.ReadElementContentAsBase64Async(buffer, index, count).ConfigureAwait(false);