3 overrides of WriteBinHexAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
133
public override Task
WriteBinHexAsync
(byte[] buffer, int index, int count)
System.Private.Xml (2)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
515
public override Task
WriteBinHexAsync
(byte[] buffer, int index, int count)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
1174
public override async Task
WriteBinHexAsync
(byte[] buffer, int index, int count)
3 references to WriteBinHexAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
136
return SetLastTask(CoreWriter.
WriteBinHexAsync
(buffer, index, count));
System.Private.Xml (2)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
518
var task = _coreWriter.
WriteBinHexAsync
(buffer, index, count);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
1183
await base.
WriteBinHexAsync
(buffer, index, count).ConfigureAwait(false);