7 overrides of ReadElementContentAsBinHexAsync
System.Xml (7)
System\Xml\BinaryXml\XmlBinaryReaderAsync.cs (1)
58public override Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count) {
System\Xml\Core\XmlAsyncCheckReader.cs (1)
744public override Task<int> ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count) {
System\Xml\Core\XmlCharCheckingReaderAsync.cs (1)
305public override async Task< int > ReadElementContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlSubtreeReaderAsync.cs (1)
388public override async Task< int > ReadElementContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlTextReaderImplAsync.cs (1)
534public override async Task< int > ReadElementContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XmlValidatingReaderImplAsync.cs (1)
130public override async Task< int > ReadElementContentAsBinHexAsync( byte[] buffer, int index, int count ) {
System\Xml\Core\XsdValidatingReaderAsync.cs (1)
374public override async Task< int > ReadElementContentAsBinHexAsync(byte[] buffer, int index, int count) {
3 references to ReadElementContentAsBinHexAsync
System.Xml (3)
System\Xml\Core\XmlAsyncCheckReader.cs (1)
746var task = coreReader.ReadElementContentAsBinHexAsync(buffer, index, count);
System\Xml\Core\XmlCharCheckingReaderAsync.cs (2)
329return await base.ReadElementContentAsBinHexAsync( buffer, index, count ).ConfigureAwait(false); 339return await base.ReadElementContentAsBinHexAsync( buffer, index, count ).ConfigureAwait(false);