3 writes to Name
System.Private.Xml (3)
System\Xml\Schema\Preprocessor.cs (1)
456attributeGroup.Name = "specialAttrs";
System\Xml\Schema\XmlSchemaAttributeGroup.cs (1)
81set { Name = value; }
System\Xml\Schema\XsdBuilder.cs (1)
1792builder._attributeGroup!.Name = value;
9 references to Name
System.Data.Common (1)
System\Data\XMLSchema.cs (1)
1022if (attributeGroup.RedefinedAttributeGroup != null && attributeGroupRef.RefName == new XmlQualifiedName(attributeGroup.Name, attributeGroupRef.RefName.Namespace))
System.Private.Xml (8)
System\Xml\Schema\Preprocessor.cs (2)
1245if (attributeGroup.Name != null) 1248attributeGroup.SetQualifiedName(new XmlQualifiedName(attributeGroup.Name, _targetNamespace));
System\Xml\Schema\SchemaCollectionpreProcessor.cs (2)
917if (attributeGroup.Name != null) 920attributeGroup.SetQualifiedName(new XmlQualifiedName(attributeGroup.Name, _targetNamespace));
System\Xml\Schema\XmlSchemaAttributeGroup.cs (1)
80get { return Name; }
System\Xml\Serialization\SchemaObjectWriter.cs (1)
748WriteAttribute(@"name", @"", ((string?)o.@Name));
System\Xml\Serialization\XmlSchemas.cs (2)
458return ((XmlSchemaAttributeGroup)o).Name; 534item = SR.Format(SR.XmlSchemaNamedItem, ns, "attributeGroup", ((XmlSchemaAttributeGroup)o).Name, details);