7 references to WriteAttributeStringAsync
aspire (4)
Packaging\TemporaryNuGetConfig.cs (4)
62await xmlWriter.WriteAttributeStringAsync(null, "key", null, sourceInfo.Key); 63await xmlWriter.WriteAttributeStringAsync(null, "value", null, sourceInfo.Source); 81await xmlWriter.WriteAttributeStringAsync(null, "key", null, sourceInfo.Key); 86await xmlWriter.WriteAttributeStringAsync(null, "pattern", null, mapping.PackageFilter);
System.Private.Xml (2)
System\Xml\Core\XmlWriterAsync.cs (2)
569await WriteAttributeStringAsync(string.Empty, "xmlns", XmlReservedNs.NsXmlNs, ns).ConfigureAwait(false); 573await WriteAttributeStringAsync("xmlns", prefix, XmlReservedNs.NsXmlNs, ns).ConfigureAwait(false);
System.Private.Xml.Linq (1)
System\Xml\Linq\XLinq.cs (1)
404await _writer.WriteAttributeStringAsync(GetPrefixOfNamespace(ns, false), localName, namespaceName.Length == 0 && localName == "xmlns" ? XNamespace.xmlnsPrefixNamespace : namespaceName, a.Value).ConfigureAwait(false);