6 overrides of ReadContentAsBinHexAsync
System.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
737public override Task<int> ReadContentAsBinHexAsync(byte[] buffer, int index, int count) {
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
219public override async Task< int > ReadContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
320public override async Task< int > ReadContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
416public override async Task< int > ReadContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
88public override async Task< int > ReadContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
328public override async Task< int > ReadContentAsBinHexAsync(byte[] buffer, int index, int count) {
8 references to ReadContentAsBinHexAsync
System.Xml (8)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
739var task = coreReader.ReadContentAsBinHexAsync(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
230return await base.ReadContentAsBinHexAsync( buffer, index, count ).ConfigureAwait(false); 240return await base.ReadContentAsBinHexAsync( buffer, index, count ).ConfigureAwait(false);
System\Xml\Core\XmlSubtreeReaderAsync.cs (5)
359return await reader.ReadContentAsBinHexAsync( buffer, index, count ).ConfigureAwait(false); 370int read = await reader.ReadContentAsBinHexAsync( buffer, index, count ).ConfigureAwait(false); 404int read = await reader.ReadContentAsBinHexAsync( buffer, index, count ).ConfigureAwait(false); 518while ( await reader.ReadContentAsBinHexAsync( bytes, 0, 256 ).ConfigureAwait(false) > 0 ) ; 547while ( await reader.ReadContentAsBinHexAsync( bytes, 0, 256 ).ConfigureAwait(false) > 0 ) ;