1 write to namespaceUri
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriterHelpers.cs (1)
93this.namespaceUri = namespaceUri;
12 references to namespaceUri
dotnet-svcutil-lib (12)
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriter.cs (10)
1318if (_nsStack[i].namespaceUri == ns) 1699if (_nsStack[existingNsIndex].namespaceUri != ns) 1701throw new XmlException(ResXml.Xml_RedefinePrefix, new string[] { prefix, _nsStack[existingNsIndex].namespaceUri, ns }); 1714if (ns != _nsStack[existingNsIndex].namespaceUri) 1732kind = (_nsStack[existingNsIndex].namespaceUri == ns) ? NamespaceKind.Implied : NamespaceKind.NeedToWrite; 1779if (_nsStack[existingNsIndex].namespaceUri != ns) 1781throw new XmlException(ResXml.Xml_RedefinePrefix, new string[] { prefix, _nsStack[existingNsIndex].namespaceUri, ns }); 1802if (_nsStack[existingNsIndex].namespaceUri == ns && _omitDuplNamespaces) 2106return _nsStack[i].namespaceUri; 2118return _nsStack[i].namespaceUri;
FrameworkFork\Microsoft.Xml\Xml\Core\XmlWellformedWriterHelpers.cs (2)
103rawWriter.WriteNamespaceDeclaration(prefix, namespaceUri); 115writer.WriteString(namespaceUri);