5 overrides of WriteStartElementAsync
System.Xml (5)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
318public override Task WriteStartElementAsync(string prefix, string localName, string ns) {
System\Xml\Core\XmlEncodedRawTextWriterAsync.cs (1)
102public override Task WriteStartElementAsync( string prefix, string localName, string ns) {
System\Xml\Core\XmlUtf8RawTextWriterAsync.cs (1)
98public override Task WriteStartElementAsync( string prefix, string localName, string ns) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
144public override Task WriteStartElementAsync(string prefix, string localName, string ns) {
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
30public override Task WriteStartElementAsync(string prefix, string localName, string ns) {
8 references to WriteStartElementAsync
System.Xml (8)
System\Xml\Core\XmlAsyncCheckWriter.cs (1)
320var task = coreWriter.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlCharCheckingWriterAsync.cs (1)
55return writer.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlWellFormedWriterAsync.cs (1)
200Task task = writer.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlWrappingWriterAsync.cs (1)
31return writer.WriteStartElementAsync(prefix, localName, ns);
System\Xml\Core\XmlWriterAsync.cs (4)
274await WriteStartElementAsync(reader.Prefix, reader.LocalName, reader.NamespaceURI).ConfigureAwait(false); 333await WriteStartElementAsync(reader.Prefix, reader.LocalName, reader.NamespaceURI).ConfigureAwait(false); 399await WriteStartElementAsync(navigator.Prefix, navigator.LocalName, navigator.NamespaceURI).ConfigureAwait(false); 496await WriteStartElementAsync(prefix, localName, ns).ConfigureAwait(false);