6 overrides of WriteEndElementAsync
System.Private.DataContractSerialization (2)
System\Xml\XmlBaseWriter.cs (1)
630public override Task WriteEndElementAsync()
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
223public override Task WriteEndElementAsync()
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
387public override Task WriteEndElementAsync()
System\Xml\Core\XmlRawWriterAsync.cs (1)
67public override Task WriteEndElementAsync()
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
316public override Task WriteEndElementAsync()
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
40public override Task WriteEndElementAsync()
9 references to WriteEndElementAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
226return SetLastTask(CoreWriter.WriteEndElementAsync());
System.Private.Xml (7)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
390var task = _coreWriter.WriteEndElementAsync();
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
348task = _writer.WriteEndElementAsync();
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
42return writer.WriteEndElementAsync();
System\Xml\Core\XmlWriterAsync.cs (4)
309await WriteEndElementAsync().ConfigureAwait(false); 371await WriteEndElementAsync().ConfigureAwait(false); 506await WriteEndElementAsync().ConfigureAwait(false); 552await WriteEndElementAsync().ConfigureAwait(false);
System.Private.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
353await _writer.WriteEndElementAsync().ConfigureAwait(false);