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