61 references to NsXml
System.Xml (61)
System\Xml\BinaryXml\XmlBinaryReader.cs (1)
345
AddInitNamespace(this.xml, this.xnt.Add(XmlReservedNs.
NsXml
));
System\Xml\Cache\XPathDocumentBuilder.cs (1)
104
this.idxNmsp = NewNamespaceNode(out this.pageNmsp, this.nameTable.Add("xml"), this.nameTable.Add(XmlReservedNs.
NsXml
), null, 0);
System\Xml\Core\XmlTextReaderImpl.cs (1)
7021
else if ( uri == XmlReservedNs.
NsXml
) {
System\Xml\Core\XmlTextWriter.cs (1)
1440
if (XmlReservedNs.
NsXml
!= ns) {
System\Xml\Core\XmlWellFormedWriter.cs (8)
273
nsStack[1].Set("xml", XmlReservedNs.
NsXml
, NamespaceKind.Special);
619
if (namespaceName.Length > 0 && namespaceName != XmlReservedNs.
NsXml
) {
701
if (value == XmlReservedNs.NsXmlNs || (value == XmlReservedNs.
NsXml
&& curDeclPrefix != "xml")) {
736
writer.WriteStartAttribute("xml", "space", XmlReservedNs.
NsXml
);
743
writer.WriteStartAttribute("xml", "lang", XmlReservedNs.
NsXml
);
1432
if ((ns == XmlReservedNs.
NsXml
&& prefix != "xml") ||
1502
if ((ns == XmlReservedNs.
NsXml
&& prefix != "xml") ||
1508
if (ns != XmlReservedNs.
NsXml
) {
System\Xml\Core\XmlWellFormedWriterAsync.cs (4)
436
if (namespaceName.Length > 0 && namespaceName != XmlReservedNs.
NsXml
) {
556
if (value == XmlReservedNs.NsXmlNs || (value == XmlReservedNs.
NsXml
&& curDeclPrefix != "xml")) {
591
await writer.WriteStartAttributeAsync("xml", "space", XmlReservedNs.
NsXml
).ConfigureAwait(false);
598
await writer.WriteStartAttributeAsync("xml", "lang", XmlReservedNs.
NsXml
).ConfigureAwait(false);
System\Xml\Dom\XmlDocument.cs (1)
115
strReservedXml = nt.Add( XmlReservedNs.
NsXml
);
System\Xml\Dom\XmlNodeReader.cs (4)
740
return nameTable.Add( XmlReservedNs.
NsXml
);
782
return nameTable.Add( XmlReservedNs.
NsXml
);
798
if ( namespaceName == XmlReservedNs.
NsXml
) {
881
dict.Add( nameTable.Add( "xml" ), nameTable.Add( XmlReservedNs.
NsXml
) );
System\Xml\Schema\BaseProcessor.cs (1)
31
NsXml = nameTable.Add(XmlReservedNs.
NsXml
);
System\Xml\Schema\Inference\Infer.cs (1)
317
if (childURI == XmlReservedNs.
NsXml
)
System\Xml\Schema\Preprocessor.cs (6)
283
if (importNS == XmlReservedNs.
NsXml
) {
370
tempSchema.TargetNamespace = XmlReservedNs.
NsXml
;
371
tempSchema.Namespaces.Add("xml", XmlReservedNs.
NsXml
);
402
langRef.RefName = new XmlQualifiedName("lang", XmlReservedNs.
NsXml
);
405
spaceRef.RefName = new XmlQualifiedName("space", XmlReservedNs.
NsXml
);
408
baseRef.RefName = new XmlQualifiedName("base", XmlReservedNs.
NsXml
);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
131
if (include is XmlSchemaImport && ((XmlSchemaImport)include).Namespace == XmlReservedNs.
NsXml
) {
176
if (include is XmlSchemaImport && ((XmlSchemaImport)include).Namespace == XmlReservedNs.
NsXml
) {
System\Xml\Schema\SchemaNames.cs (1)
170
NsXml = nameTable.Add(XmlReservedNs.
NsXml
);
System\Xml\Schema\SchemaNamespacemanager.cs (2)
22
return XmlReservedNs.
NsXml
;
37
if (ns == XmlReservedNs.
NsXml
) { //Special case for the XML namespace
System\Xml\Schema\XmlSchemaSet.cs (1)
1315
if (qname.Namespace == XmlReservedNs.
NsXml
) {
System\Xml\Schema\XmlSchemaValidator.cs (1)
216
NsXml = nameTable.Add(XmlReservedNs.
NsXml
);
System\Xml\Serialization\Mappings.cs (2)
206
Namespace = XmlReservedNs.
NsXml
;
210
if (Namespace == XmlReservedNs.
NsXml
) {
System\Xml\Serialization\SchemaImporter.cs (1)
49
if (!schemas.Contains(XmlReservedNs.
NsXml
)) {
System\Xml\Serialization\XmlSchemaExporter.cs (2)
627
AddSchemaImport(XmlReservedNs.
NsXml
, ns);
632
attribute.RefName = new XmlQualifiedName(accessor.Name, XmlReservedNs.
NsXml
);
System\Xml\Serialization\XmlSchemaImporter.cs (2)
1480
accessor.Namespace = XmlReservedNs.
NsXml
;
1489
if (attribute.RefName.Namespace == XmlReservedNs.
NsXml
)
System\Xml\Serialization\XmlSchemas.cs (1)
635
if (!SchemaSet.Contains(XmlReservedNs.
NsXml
)) {
System\Xml\Serialization\XmlSerializationReader.cs (2)
3462
WriteXmlNodeEqual("Reader", attribute.Name, XmlReservedNs.
NsXml
);
3524
qnames += attribute.IsSpecialXmlNamespace ? XmlReservedNs.
NsXml
: (attribute.Form == XmlSchemaForm.Qualified ? attribute.Namespace : "") + ":" + attribute.Name;
System\Xml\Serialization\XmlSerializationReaderILGen.cs (2)
1892
WriteXmlNodeEqual("Reader", attribute.Name, XmlReservedNs.
NsXml
);
2064
qnames += attribute.IsSpecialXmlNamespace ? XmlReservedNs.
NsXml
: (attribute.Form == XmlSchemaForm.Qualified ? attribute.Namespace : "") + ":" + attribute.Name;
System\Xml\Serialization\XmlSerializationWriter.cs (3)
365
if (ns == XmlReservedNs.
NsXml
) {
840
if (ns == XmlReservedNs.
NsXml
) {
866
if (ns == XmlReservedNs.
NsXml
) {
System\Xml\ValidateNames.cs (2)
444
return s.Equals(XmlReservedNs.
NsXml
) || s.Equals(XmlReservedNs.NsXmlNs);
550
if (!ns.Equals(XmlReservedNs.
NsXml
)) {
System\Xml\XmlNamespacemanager.cs (2)
84
nsdecls[2].Set( xml, nameTable.Add( XmlReservedNs.
NsXml
), 0, -1 );
133
if ( ( Ref.Equal( xml, prefix ) && !uri.Equals( XmlReservedNs.
NsXml
) ) ) {
System\Xml\XPath\XPathNavigator.cs (5)
380
return XmlReservedNs.
NsXml
;
412
else if (namespaceURI == XmlReservedNs.
NsXml
)
437
dict["xml"] = XmlReservedNs.
NsXml
;
488
if (navClone.MoveToAttribute("lang", XmlReservedNs.
NsXml
))
563
return XmlReservedNs.
NsXml
;
System\Xml\XPath\XPathNavigatorReader.cs (1)
235
if (tempNav.MoveToAttribute(XPathNavigatorReader.space, XmlReservedNs.
NsXml
)) {