2 writes to RefName
System.Private.Xml (2)
System\Xml\Schema\XmlSchemaComplexType.cs (1)
426
newAttGroupRef.
RefName
= attributeGroupRef.RefName.Clone();
System\Xml\Schema\XsdBuilder.cs (1)
1811
builder._attributeGroupRef!.
RefName
= builder.ParseQName(value, "ref");
25 references to RefName
System.Data.Common (4)
System\Data\XMLSchema.cs (4)
999
XmlSchemaAttributeGroup? schemaGroup = _attributeGroups![groupRef!.
RefName
] as XmlSchemaAttributeGroup;
1022
if (attributeGroup.RedefinedAttributeGroup != null && attributeGroupRef.
RefName
== new XmlQualifiedName(attributeGroup.Name, attributeGroupRef.
RefName
.Namespace))
1028
attributeGroupResolved = (XmlSchemaAttributeGroup?)_attributeGroups![attributeGroupRef.
RefName
];
System.Private.Xml (21)
System\Xml\Schema\Preprocessor.cs (3)
1083
if (attrGroupRef != null && attrGroupRef.
RefName
== attributeGroup.QualifiedName)
2014
if (attributeGroupRef.
RefName
.IsEmpty)
2020
ValidateQNameAttribute(attributeGroupRef, "ref", attributeGroupRef.
RefName
);
System\Xml\Schema\SchemaCollectionCompiler.cs (5)
1749
if (attributeGroup.Redefined != null && attributeGroupRef.
RefName
== attributeGroup.Redefined.QualifiedName)
1755
attributeGroupResolved = (XmlSchemaAttributeGroup?)_schema!.AttributeGroups[attributeGroupRef.
RefName
];
1776
SendValidationEvent(SR.Sch_UndefAttributeGroupRef, attributeGroupRef.
RefName
.ToString(), attributeGroupRef);
1816
XmlSchemaAttributeGroup? attributeGroup = (XmlSchemaAttributeGroup?)_schema!.AttributeGroups[attributeGroupRef.
RefName
];
1843
SendValidationEvent(SR.Sch_UndefAttributeGroupRef, attributeGroupRef.
RefName
.ToString(), attributeGroupRef);
System\Xml\Schema\SchemaCollectionpreProcessor.cs (3)
760
if (groupRef != null && groupRef.
RefName
== attributeGroup.QualifiedName)
1682
if (attributeGroupRef.
RefName
.IsEmpty)
1688
ValidateQNameAttribute(attributeGroupRef, "ref", attributeGroupRef.
RefName
);
System\Xml\Schema\SchemaSetCompiler.cs (5)
2104
if (attributeGroup.Redefined != null && attributeGroupRef.
RefName
== attributeGroup.Redefined.QualifiedName)
2110
attributeGroupResolved = (XmlSchemaAttributeGroup?)_attributeGroups[attributeGroupRef.
RefName
];
2132
SendValidationEvent(SR.Sch_UndefAttributeGroupRef, attributeGroupRef.
RefName
.ToString(), attributeGroupRef);
2176
XmlSchemaAttributeGroup? attributeGroup = (XmlSchemaAttributeGroup?)_attributeGroups[attributeGroupRef.
RefName
];
2204
SendValidationEvent(SR.Sch_UndefAttributeGroupRef, attributeGroupRef.
RefName
.ToString(), attributeGroupRef);
System\Xml\Schema\XmlSchemaComplexType.cs (1)
426
newAttGroupRef.RefName = attributeGroupRef.
RefName
.Clone();
System\Xml\Serialization\ImportContext.cs (1)
407
XmlSchemaAttributeGroup? group = (XmlSchemaAttributeGroup?)_schemas.Find(((XmlSchemaAttributeGroupRef)item).
RefName
, typeof(XmlSchemaAttributeGroup), false);
System\Xml\Serialization\SchemaObjectWriter.cs (2)
763
if (!o.
RefName
.IsEmpty)
765
WriteAttribute("ref", "", o.
RefName
);
System\Xml\Serialization\XmlSchemaImporter.cs (1)
672
XmlQualifiedName groupName = ((XmlSchemaAttributeGroupRef)item).
RefName
;