6 overrides of ReadContentAsBinHexAsync
System.Private.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
867
public override Task<int>
ReadContentAsBinHexAsync
(byte[] buffer, int index, int count)
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
262
public override async Task<int>
ReadContentAsBinHexAsync
(byte[] buffer, int index, int count)
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
369
public override async Task<int>
ReadContentAsBinHexAsync
(byte[] buffer, int index, int count)
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
443
public override async Task<int>
ReadContentAsBinHexAsync
(byte[] buffer, int index, int count)
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
97
public override async Task<int>
ReadContentAsBinHexAsync
(byte[] buffer, int index, int count)
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
409
public override async Task<int>
ReadContentAsBinHexAsync
(byte[] buffer, int index, int count)
8 references to ReadContentAsBinHexAsync
System.Private.Xml (8)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
870
var task = _coreReader.
ReadContentAsBinHexAsync
(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
277
return await base.
ReadContentAsBinHexAsync
(buffer, index, count).ConfigureAwait(false);
290
return await base.
ReadContentAsBinHexAsync
(buffer, index, count).ConfigureAwait(false);
System\Xml\Core\XmlSubtreeReaderAsync.cs (5)
420
return await reader.
ReadContentAsBinHexAsync
(buffer, index, count).ConfigureAwait(false);
431
int read = await reader.
ReadContentAsBinHexAsync
(buffer, index, count).ConfigureAwait(false);
469
int read = await reader.
ReadContentAsBinHexAsync
(buffer, index, count).ConfigureAwait(false);
599
while (await reader.
ReadContentAsBinHexAsync
(bytes, 0, 256).ConfigureAwait(false) > 0) ;
633
while (await reader.
ReadContentAsBinHexAsync
(bytes, 0, 256).ConfigureAwait(false) > 0) ;