6 overrides of ReadElementContentAsBinHexAsync
System.Private.Xml (6)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
875public override Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
359public override Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
450public override async Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
564public override async Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
145public override async Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
463public override async Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count)
3 references to ReadElementContentAsBinHexAsync
System.Private.Xml (3)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
878var task = _coreReader.ReadElementContentAsBinHexAsync(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
384return await base.ReadElementContentAsBinHexAsync(buffer, index, count).ConfigureAwait(false); 397return await base.ReadElementContentAsBinHexAsync(buffer, index, count).ConfigureAwait(false);