1 write to nsManager
System.Xml (1)
System\Xml\Dom\DocumentSchemaValidator.cs (1)
69nsManager = new XmlNamespaceManager(nameTable);
11 references to nsManager
System.Xml (11)
System\Xml\Dom\DocumentSchemaValidator.cs (11)
161IDictionary<string,string> dictionary = nsManager.GetNamespacesInScope(scope); 203string namespaceName = nsManager.LookupNamespace(prefix); 211string prefix = nsManager.LookupPrefix(namespaceName); 221return nsManager; 300nsManager.PushScope(); 327nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.LocalName, attr.Value); 350nsManager.PopScope(); //Pop current namespace scope 603nsManager.PushScope(); 629nsManager.AddNamespace(attr.Prefix.Length == 0 ? string.Empty : attr.LocalName, attr.Value); 637nsManager.PopScope(); //Pop current namespace scope 679XmlSchemaValidator findTypeValidator = new XmlSchemaValidator(document.NameTable, document.Schemas, this.nsManager, XmlSchemaValidationFlags.None);