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