73 references to NsXml
System.Private.Xml (73)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
349
AddInitNamespace(_xml, _xnt.Add(XmlReservedNs.
NsXml
));
System\Xml\Cache\XPathDocumentBuilder.cs (1)
111
_idxNmsp = NewNamespaceNode(out _pageNmsp, _nameTable.Add("xml"), _nameTable.Add(XmlReservedNs.
NsXml
), null, 0);
System\Xml\Core\XmlTextReaderImpl.cs (1)
7788
else if (uri == XmlReservedNs.
NsXml
)
System\Xml\Core\XmlTextWriter.cs (1)
1775
XmlReservedNs.
NsXml
!= ns)
System\Xml\Core\XmlWellFormedWriter.cs (8)
264
_nsStack[1].Set("xml", XmlReservedNs.
NsXml
, NamespaceKind.Special);
679
if (namespaceName.Length > 0 && namespaceName != XmlReservedNs.
NsXml
)
780
if (value == XmlReservedNs.NsXmlNs || (value == XmlReservedNs.
NsXml
&& _curDeclPrefix != "xml"))
827
_writer.WriteStartAttribute("xml", "space", XmlReservedNs.
NsXml
);
834
_writer.WriteStartAttribute("xml", "lang", XmlReservedNs.
NsXml
);
1640
if ((ns == XmlReservedNs.
NsXml
&& prefix != "xml") ||
1724
if ((ns == XmlReservedNs.
NsXml
&& prefix != "xml") ||
1733
if (ns != XmlReservedNs.
NsXml
)
System\Xml\Core\XmlWellFormedWriterAsync.cs (4)
537
if (namespaceName.Length > 0 && namespaceName != XmlReservedNs.
NsXml
)
685
if (value == XmlReservedNs.NsXmlNs || (value == XmlReservedNs.
NsXml
&& _curDeclPrefix != "xml"))
731
await _writer.WriteStartAttributeAsync("xml", "space", XmlReservedNs.
NsXml
).ConfigureAwait(false);
738
await _writer.WriteStartAttributeAsync("xml", "lang", XmlReservedNs.
NsXml
).ConfigureAwait(false);
System\Xml\Dom\XmlDocument.cs (4)
71
(XmlReservedNs.
NsXml
, System.Xml.NameTable.ComputeHash32(XmlReservedNs.
NsXml
))
152
strReservedXml = XmlReservedNs.
NsXml
;
194
strReservedXml = customNameTable.Add(XmlReservedNs.
NsXml
);
System\Xml\Dom\XmlNodeReader.cs (4)
862
return _nameTable.Add(XmlReservedNs.
NsXml
);
911
return _nameTable.Add(XmlReservedNs.
NsXml
);
931
if (namespaceName == XmlReservedNs.
NsXml
)
1043
dict.Add(_nameTable.Add("xml"), _nameTable.Add(XmlReservedNs.
NsXml
));
System\Xml\Schema\BaseProcessor.cs (1)
30
_nsXml = nameTable.Add(XmlReservedNs.
NsXml
);
System\Xml\Schema\Inference\Infer.cs (1)
296
if (childURI == XmlReservedNs.
NsXml
)
System\Xml\Schema\Preprocessor.cs (6)
314
if (importNS == XmlReservedNs.
NsXml
)
426
tempSchema.TargetNamespace = XmlReservedNs.
NsXml
;
427
tempSchema.Namespaces.Add("xml", XmlReservedNs.
NsXml
);
458
langRef.RefName = new XmlQualifiedName("lang", XmlReservedNs.
NsXml
);
461
spaceRef.RefName = new XmlQualifiedName("space", XmlReservedNs.
NsXml
);
464
baseRef.RefName = new XmlQualifiedName("base", XmlReservedNs.
NsXml
);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
146
if (include is XmlSchemaImport && ((XmlSchemaImport)include).Namespace == XmlReservedNs.
NsXml
)
202
if (include is XmlSchemaImport && ((XmlSchemaImport)include).Namespace == XmlReservedNs.
NsXml
)
System\Xml\Schema\SchemaNames.cs (1)
164
NsXml = nameTable.Add(XmlReservedNs.
NsXml
);
System\Xml\Schema\SchemaNamespacemanager.cs (2)
24
return XmlReservedNs.
NsXml
;
36
if (ns == XmlReservedNs.
NsXml
)
System\Xml\Schema\XmlSchemaSet.cs (1)
1411
if (qname.Namespace == XmlReservedNs.
NsXml
)
System\Xml\Schema\XmlSchemaValidator.cs (1)
225
_nsXml = _nameTable.Add(XmlReservedNs.
NsXml
);
System\Xml\Serialization\Mappings.cs (2)
245
Namespace = XmlReservedNs.
NsXml
;
250
if (Namespace == XmlReservedNs.
NsXml
)
System\Xml\Serialization\ReflectionXmlSerializationReader.cs (1)
1857
memberFound = XmlNodeEqual(Reader, attribute.Name, XmlReservedNs.
NsXml
);
System\Xml\Serialization\SchemaImporter.cs (1)
37
if (!schemas.Contains(XmlReservedNs.
NsXml
))
System\Xml\Serialization\XmlSchemaExporter.cs (2)
691
AddSchemaImport(XmlReservedNs.
NsXml
, ns);
696
attribute.RefName = new XmlQualifiedName(accessor.Name, XmlReservedNs.
NsXml
);
System\Xml\Serialization\XmlSchemaImporter.cs (2)
1595
accessor.Namespace = XmlReservedNs.
NsXml
;
1608
if (attribute.RefName.Namespace == XmlReservedNs.
NsXml
)
System\Xml\Serialization\XmlSchemas.cs (1)
660
if (!SchemaSet.Contains(XmlReservedNs.
NsXml
))
System\Xml\Serialization\XmlSerializationReader.cs (2)
3712
WriteXmlNodeEqual("Reader", attribute.Name, XmlReservedNs.
NsXml
);
3780
qnames += attribute.IsSpecialXmlNamespace ? XmlReservedNs.
NsXml
: $"{(attribute.Form == XmlSchemaForm.Qualified ? attribute.Namespace : "")}:{attribute.Name}";
System\Xml\Serialization\XmlSerializationReaderILGen.cs (2)
1852
WriteXmlNodeEqual("Reader", attribute.Name, XmlReservedNs.
NsXml
);
2006
qnames += attribute.IsSpecialXmlNamespace ? XmlReservedNs.
NsXml
: $"{(attribute.Form == XmlSchemaForm.Qualified ? attribute.Namespace : "")}:{attribute.Name}";
System\Xml\Serialization\XmlSerializationWriter.cs (3)
442
if (ns == XmlReservedNs.
NsXml
)
959
if (ns == XmlReservedNs.
NsXml
)
992
if (ns == XmlReservedNs.
NsXml
)
System\Xml\ValidateNames.cs (2)
421
return s.Equals(XmlReservedNs.
NsXml
) || s.Equals(XmlReservedNs.NsXmlNs);
543
if (!ns.Equals(XmlReservedNs.
NsXml
))
System\Xml\XmlNamespacemanager.cs (2)
67
_nsdecls[2].Set(_xml, nameTable.Add(XmlReservedNs.
NsXml
), 0, -1);
131
if ((Ref.Equal(_xml, prefix) && !uri.Equals(XmlReservedNs.
NsXml
)))
System\Xml\XPath\XPathNavigator.cs (5)
424
return XmlReservedNs.
NsXml
;
461
else if (namespaceURI == XmlReservedNs.
NsXml
)
485
dict["xml"] = XmlReservedNs.
NsXml
;
542
if (navClone.MoveToAttribute("lang", XmlReservedNs.
NsXml
))
629
return XmlReservedNs.
NsXml
;
System\Xml\XPath\XPathNavigatorReader.cs (1)
266
if (tempNav.MoveToAttribute(XPathNavigatorReader.space, XmlReservedNs.
NsXml
))
System\Xml\Xsl\IlGen\XmlILConstructAnalyzer.cs (1)
1068
prefix == "xml" && ns == XmlReservedNs.
NsXml
)
System\Xml\Xsl\Runtime\XmlQueryRuntime.cs (1)
418
ns = XmlReservedNs.
NsXml
;
System\Xml\Xsl\Runtime\XsltFunctions.cs (1)
519
return XmlReservedNs.
NsXml
;
System\Xml\Xsl\Xslt\CompilerScopeManager.cs (1)
62
_records[0].nsUri = XmlReservedNs.
NsXml
;
System\Xml\Xsl\Xslt\Keywords.cs (1)
232
UriXml = nt.Add(XmlReservedNs.
NsXml
);
System\Xml\Xsl\XsltOld\AttributeAction.cs (1)
43
if (qname.Namespace == XmlReservedNs.
NsXml
&& (qname.Name == "lang" || qname.Name == "space"))
System\Xml\Xsl\XsltOld\InputScopeManager.cs (1)
99
return XmlReservedNs.
NsXml
;
System\Xml\Xsl\XsltOld\OutKeywords.cs (1)
27
_AtomXmlNamespace = nameTable.Add(XmlReservedNs.
NsXml
);