7 overrides of WriteStartElementAsync
System.Private.DataContractSerialization (2)
System\Xml\XmlBaseWriter.cs (1)
591public override Task WriteStartElementAsync(string? prefix, string localName, string? namespaceUri)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
373public override Task WriteStartElementAsync(string? prefix, string localName, string? ns)
System.Private.Xml (5)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
379public override Task WriteStartElementAsync(string? prefix, string localName, string? ns)
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
174public override Task WriteStartElementAsync(string? prefix, string localName, string? ns)
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
150public override Task WriteStartElementAsync(string? prefix, string localName, string? ns)
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
177public override Task WriteStartElementAsync(string? prefix, string localName, string? ns)
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
35public override Task WriteStartElementAsync(string? prefix, string localName, string? ns)
10 references to WriteStartElementAsync
System.Private.DataContractSerialization (1)
System\Xml\XmlDictionaryAsyncCheckWriter.cs (1)
376return SetLastTask(CoreWriter.WriteStartElementAsync(prefix, localName, ns));
System.Private.Xml (8)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
382var task = _coreWriter.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
71return writer.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
241Task task = _writer.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
37return writer.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlWriterAsync.cs (4)
305await WriteStartElementAsync(reader.Prefix, reader.LocalName, reader.NamespaceURI).ConfigureAwait(false); 367await WriteStartElementAsync(reader.Prefix, reader.LocalName, reader.NamespaceURI).ConfigureAwait(false); 438await WriteStartElementAsync(navigator.Prefix, navigator.LocalName, navigator.NamespaceURI).ConfigureAwait(false); 547await WriteStartElementAsync(prefix, localName, ns).ConfigureAwait(false);
System.Private.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
393await _writer.WriteStartElementAsync(GetPrefixOfNamespace(ns, true), e.Name.LocalName, ns.NamespaceName).ConfigureAwait(false);