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