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