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