2 overrides of WriteBinHexAsync
System.Xml (2)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
437public override Task WriteBinHexAsync(byte[] buffer, int index, int count) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
984public override async Task WriteBinHexAsync(byte[] buffer, int index, int count) {
2 references to WriteBinHexAsync
System.Xml (2)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
439var task = coreWriter.WriteBinHexAsync(buffer, index, count);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
990await base.WriteBinHexAsync(buffer, index, count).ConfigureAwait(false);