3 overrides of WriteAttributesAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
109public override Task WriteAttributesAsync(XmlReader reader, bool defattr)
System.Private.Xml (2)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
555public override Task WriteAttributesAsync(XmlReader reader, bool defattr)
System\Xml\Core\XmlRawWriterAsync.cs (1)
148public override Task WriteAttributesAsync(XmlReader reader, bool defattr)
5 references to WriteAttributesAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
112return SetLastTask(CoreWriter.WriteAttributesAsync(reader, defattr));
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
558var task = _coreWriter.WriteAttributesAsync(reader, defattr);
System\Xml\Core\XmlWriterAsync.cs (3)
242await WriteAttributesAsync(reader, defattr).ConfigureAwait(false); 306await WriteAttributesAsync(reader, defattr).ConfigureAwait(false); 368await WriteAttributesAsync(reader, defattr).ConfigureAwait(false);