18 references to QualifiedName
System.Private.Xml (18)
System\Xml\Schema\BaseProcessor.cs (1)
183table.Insert(group.QualifiedName, group); //Update with redefined entry
System\Xml\Schema\Preprocessor.cs (9)
760AddToTable(schema.Groups, group.QualifiedName, group); 798AddToTable(schema.Groups, group!.QualifiedName, group); 846group.QualifiedName.SetNamespace(targetNS); //Since PreprocessGroup will use this.targetNamespace and that will be that of the root schema's 847if (redefine.Groups[group.QualifiedName] != null) 853AddToTable(redefine.Groups, group.QualifiedName, group); 854XmlSchemaGroup? originalGroup = (XmlSchemaGroup?)schemaToUpdate.Groups[group.QualifiedName]; 858SendValidationEvent(SR.Sch_ComponentRedefineNotFound, "<group>", group.QualifiedName.ToString(), group); 863schemaToUpdate.Groups.Insert(group.QualifiedName, group); 1068count = CountGroupSelfReference(group.Particle.Items, group.QualifiedName, group.Redefined);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (6)
513AddToTable(schema.Groups, group!.QualifiedName, group); 567AddToTable(schema.Groups, group.QualifiedName, group); 597if (redefine.Groups[group.QualifiedName] != null) 603AddToTable(redefine.Groups, group.QualifiedName, group); 604group.Redefined = (XmlSchemaGroup?)redefine.Schema!.Groups[group.QualifiedName]; 746count = CountGroupSelfReference(group.Particle.Items, group.QualifiedName);
System\Xml\Schema\SchemaSetCompiler.cs (1)
84AddToTable(_groups, group!.QualifiedName, group);
System\Xml\Serialization\SchemaObjectWriter.cs (1)
88return ((XmlSchemaGroup)o).QualifiedName;