7 overrides of ReadContentAsBase64Async
System.Xml (7)
System\Xml\BinaryXml\XmlBinaryReaderAsync.cs (1)
46
public override Task<int>
ReadContentAsBase64Async
(byte[] buffer, int index, int count) {
System\Xml\Core\XmlAsyncCheckReader.cs (1)
723
public override Task<int>
ReadContentAsBase64Async
(byte[] buffer, int index, int count) {
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
183
public override async Task< int >
ReadContentAsBase64Async
( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
201
public override async Task< int >
ReadContentAsBase64Async
( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
361
public override Task< int >
ReadContentAsBase64Async
( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
67
public override async Task< int >
ReadContentAsBase64Async
( byte[] buffer, int index, int count ) {
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
305
public override async Task< int >
ReadContentAsBase64Async
(byte[] buffer, int index, int count) {
8 references to ReadContentAsBase64Async
System.Xml (8)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
725
var task = coreReader.
ReadContentAsBase64Async
(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
194
return await base.
ReadContentAsBase64Async
( buffer, index, count ).ConfigureAwait(false);
204
return await base.
ReadContentAsBase64Async
( buffer, index, count ).ConfigureAwait(false);
System\Xml\Core\XmlSubtreeReaderAsync.cs (5)
241
return await reader.
ReadContentAsBase64Async
( buffer, index, count ).ConfigureAwait(false);
252
int read = await reader.
ReadContentAsBase64Async
( buffer, index, count ).ConfigureAwait(false);
287
int read = await reader.
ReadContentAsBase64Async
( buffer, index, count ).ConfigureAwait(false);
515
while ( await reader.
ReadContentAsBase64Async
( bytes, 0, 256 ).ConfigureAwait(false) > 0 ) ;
544
while ( await reader.
ReadContentAsBase64Async
( bytes, 0, 256 ).ConfigureAwait(false) > 0 ) ;