3 writes to RefName
System.Private.Xml (2)
System\Xml\Schema\XmlSchemaComplexType.cs (1)
471newGroupRef.RefName = newGroupRef.RefName.Clone();
System\Xml\Schema\XsdBuilder.cs (1)
1943builder._groupRef!.RefName = builder.ParseQName(value, "ref");
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
11634o.@RefName = ToXmlQualifiedName(Reader.Value);
29 references to RefName
System.Private.Xml (28)
System\Xml\Schema\Preprocessor.cs (3)
1041if (groupRef.RefName == name) 1976if (groupRef.RefName.IsEmpty) 1982ValidateQNameAttribute(groupRef, "ref", groupRef.RefName);
System\Xml\Schema\SchemaCollectionCompiler.cs (2)
1132group = (XmlSchemaGroup?)_schema!.Groups[groupRef.RefName]; 1136SendValidationEvent(SR.Sch_UndefGroupRef, groupRef.RefName.ToString(), groupRef);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
720if (groupRef.RefName == name) 1644if (groupRef.RefName.IsEmpty) 1650ValidateQNameAttribute(groupRef, "ref", groupRef.RefName);
System\Xml\Schema\SchemaSetCompiler.cs (2)
1268group = (XmlSchemaGroup?)_groups[groupRef.RefName]; 1273SendValidationEvent(SR.Sch_UndefGroupRef, groupRef.RefName.ToString(), groupRef);
System\Xml\Schema\XmlSchemaComplexType.cs (1)
471newGroupRef.RefName = newGroupRef.RefName.Clone();
System\Xml\Serialization\ImportContext.cs (2)
304particle = ((XmlSchemaGroup)_schemas.Find(refGroup.RefName, typeof(XmlSchemaGroup), false)!).Particle; 393XmlSchemaGroup? group = (XmlSchemaGroup?)_schemas.Find(((XmlSchemaGroupRef)item).RefName, typeof(XmlSchemaGroup), false);
System\Xml\Serialization\SchemaObjectWriter.cs (3)
92return ((XmlSchemaGroupRef)o).RefName; 1209if (!o.RefName.IsEmpty) 1211WriteAttribute("ref", "", o.RefName);
System\Xml\Serialization\XmlSchemaImporter.cs (12)
718items.Particle = FindGroup(refGroup.RefName).Particle; 892if (!refGroup.RefName.IsEmpty) 894AddReference(refGroup.RefName, GroupsInUse, SR.XmlCircularGroupReference); 895if (GatherGroupChoices(FindGroup(refGroup.RefName), choiceElements, identifier, refGroup.RefName.Namespace, ref needExplicitOrder, allowDuplicates)) 897RemoveReference(refGroup.RefName, GroupsInUse); 900RemoveReference(refGroup.RefName, GroupsInUse); 993if (!refGroup.RefName.IsEmpty) 995AddReference(refGroup.RefName, GroupsInUse, SR.XmlCircularGroupReference); 996ImportGroupMembers(FindGroup(refGroup.RefName).Particle, identifier, members, membersScope, elementsScope, refGroup.RefName.Namespace, groupRepeats | refGroup.IsMultipleOccurrence, ref mixed, ref needExplicitOrder, allowDuplicates, allowUnboundedElements); 997RemoveReference(refGroup.RefName, GroupsInUse);
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
3952WriteAttribute(@"ref", @"", FromXmlQualifiedName(((global::System.Xml.XmlQualifiedName)o.@RefName)));