3 writes to RefName
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
9440o.@RefName = ToXmlQualifiedName(Reader.Value);
System.Xml (2)
System\Xml\Schema\XmlSchemaComplexType.cs (1)
481newGroupRef.RefName = newGroupRef.RefName.Clone();
System\Xml\Schema\XsdBuilder.cs (1)
1790builder.groupRef.RefName = builder.ParseQName(value, "ref");
29 references to RefName
System.Web.Services (1)
System\Web\Services\Description\ServiceDescriptionSerializer.cs (1)
3355WriteAttribute(@"ref", @"", FromXmlQualifiedName(((global::System.Xml.XmlQualifiedName)o.@RefName)));
System.Xml (28)
System\Xml\Schema\Preprocessor.cs (3)
894if (groupRef.RefName == name) { 1626if (groupRef.RefName.IsEmpty) { 1630ValidateQNameAttribute(groupRef, "ref", groupRef.RefName);
System\Xml\Schema\SchemaCollectionCompiler.cs (2)
901group = (XmlSchemaGroup)this.schema.Groups[groupRef.RefName]; 904SendValidationEvent(Res.Sch_UndefGroupRef, groupRef.RefName.ToString(), groupRef);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
589if (groupRef.RefName == name) { 1314if (groupRef.RefName.IsEmpty) { 1318ValidateQNameAttribute(groupRef, "ref", groupRef.RefName);
System\Xml\Schema\SchemaSetCompiler.cs (2)
999group = (XmlSchemaGroup)groups[groupRef.RefName]; 1002SendValidationEvent(Res.Sch_UndefGroupRef, groupRef.RefName.ToString(), groupRef);
System\Xml\Schema\XmlSchemaComplexType.cs (1)
481newGroupRef.RefName = newGroupRef.RefName.Clone();
System\Xml\Serialization\ImportContext.cs (2)
328particle = ((XmlSchemaGroup)schemas.Find(refGroup.RefName, typeof(XmlSchemaGroup), false)).Particle; 402XmlSchemaGroup group = (XmlSchemaGroup)schemas.Find(((XmlSchemaGroupRef)item).RefName, typeof(XmlSchemaGroup), false);
System\Xml\Serialization\SchemaObjectWriter.cs (3)
77return ((XmlSchemaGroupRef)o).RefName; 1014if (!o.RefName.IsEmpty) { 1015WriteAttribute("ref", "", o.RefName);
System\Xml\Serialization\XmlSchemaImporter.cs (12)
736items.Particle = FindGroup(refGroup.RefName).Particle; 891if (!refGroup.RefName.IsEmpty) { 892AddReference(refGroup.RefName, GroupsInUse, Res.XmlCircularGroupReference); 893if (GatherGroupChoices(FindGroup(refGroup.RefName), choiceElements, identifier, refGroup.RefName.Namespace, ref needExplicitOrder, allowDuplicates)) { 894RemoveReference(refGroup.RefName, GroupsInUse); 897RemoveReference(refGroup.RefName, GroupsInUse); 973if (!refGroup.RefName.IsEmpty) { 974AddReference(refGroup.RefName, GroupsInUse, Res.XmlCircularGroupReference); 975ImportGroupMembers(FindGroup(refGroup.RefName).Particle, identifier, members, membersScope, elementsScope, refGroup.RefName.Namespace, groupRepeats | refGroup.IsMultipleOccurrence, ref mixed, ref needExplicitOrder, allowDuplicates, allowUnboundedElements); 976RemoveReference(refGroup.RefName, GroupsInUse);