6 overrides of ReadContentAsBase64Async
System.Private.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
851public override Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
219public override async Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
231public override async Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
387public override Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
73public override async Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count)
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
382public override async Task<int> ReadContentAsBase64Async(byte[] buffer, int index, int count)
8 references to ReadContentAsBase64Async
System.Private.Xml (8)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
854var task = _coreReader.ReadContentAsBase64Async(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
234return await base.ReadContentAsBase64Async(buffer, index, count).ConfigureAwait(false); 247return await base.ReadContentAsBase64Async(buffer, index, count).ConfigureAwait(false);
System\Xml\Core\XmlSubtreeReaderAsync.cs (5)
282return await reader.ReadContentAsBase64Async(buffer, index, count).ConfigureAwait(false); 293int read = await reader.ReadContentAsBase64Async(buffer, index, count).ConfigureAwait(false); 332int read = await reader.ReadContentAsBase64Async(buffer, index, count).ConfigureAwait(false); 595while (await reader.ReadContentAsBase64Async(bytes, 0, 256).ConfigureAwait(false) > 0) ; 629while (await reader.ReadContentAsBase64Async(bytes, 0, 256).ConfigureAwait(false) > 0) ;