1 write to namespaceUri
System.Xml (1)
System\Xml\Core\XmlWellFormedWriterHelpers.cs (1)
83this.namespaceUri = namespaceUri;
14 references to namespaceUri
System.Xml (14)
System\Xml\Core\XmlWellFormedWriter.cs (10)
1096if (nsStack[i].namespaceUri == ns) { 1400if (nsStack[existingNsIndex].namespaceUri != ns) { 1401throw new XmlException(Res.Xml_RedefinePrefix, new string[] { prefix, nsStack[existingNsIndex].namespaceUri, ns }); 1411if (ns != nsStack[existingNsIndex].namespaceUri) { 1425kind = (nsStack[existingNsIndex].namespaceUri == ns) ? NamespaceKind.Implied : NamespaceKind.NeedToWrite; 1465if (nsStack[existingNsIndex].namespaceUri != ns) { 1466throw new XmlException(Res.Xml_RedefinePrefix, new string[] { prefix, nsStack[existingNsIndex].namespaceUri, ns }); 1484if (nsStack[existingNsIndex].namespaceUri == ns && omitDuplNamespaces) { 1741return nsStack[i].namespaceUri; 1750return nsStack[i].namespaceUri;
System\Xml\Core\XmlWellFormedWriterHelpers.cs (2)
91rawWriter.WriteNamespaceDeclaration(prefix, namespaceUri); 100writer.WriteString(namespaceUri);
System\Xml\Core\XmlWellFormedWriterHelpersAsync.cs (2)
29await rawWriter.WriteNamespaceDeclarationAsync(prefix, namespaceUri).ConfigureAwait(false); 38await writer.WriteStringAsync(namespaceUri).ConfigureAwait(false);