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