5 overrides of WriteEndDocumentAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
211public override Task WriteEndDocumentAsync()
System.Private.Xml (4)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
363public override Task WriteEndDocumentAsync()
System\Xml\Core\XmlRawWriterAsync.cs (1)
56public override Task WriteEndDocumentAsync()
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
31public override async Task WriteEndDocumentAsync()
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
25public override Task WriteEndDocumentAsync()
7 references to WriteEndDocumentAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
214return SetLastTask(CoreWriter.WriteEndDocumentAsync());
System.Private.Xml (3)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
366var task = _coreWriter.WriteEndDocumentAsync();
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
49await _writer.WriteEndDocumentAsync().ConfigureAwait(false);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
27return writer.WriteEndDocumentAsync();
System.Private.Xml.Linq (2)
System\Xml\Linq\XDocument.cs (1)
852await writer.WriteEndDocumentAsync().ConfigureAwait(false);
System\Xml\Linq\XElement.cs (1)
1193await writer.WriteEndDocumentAsync().ConfigureAwait(false);
System.ServiceModel.Primitives (1)
System\ServiceModel\Channels\MtomMessageEncoder.cs (1)
572await xmlWriter.WriteEndDocumentAsync();