18 references to Attributes
System.Private.Xml (18)
System\Xml\Schema\BaseProcessor.cs (1)
99XmlSchemaObject? builtInAttribute = schemaForXmlNS.Attributes[qname];
System\Xml\Schema\Preprocessor.cs (4)
179schema.Attributes.Clear(); 735AddToTable(schema.Attributes, attribute.QualifiedName, attribute); 791foreach (XmlSchemaAttribute? attribute in includedSchema.Attributes.Values) 793AddToTable(schema.Attributes, attribute!.QualifiedName, attribute);
System\Xml\Schema\SchemaCollectionCompiler.cs (5)
89foreach (XmlSchemaAttribute? attribute in _schema.Attributes.Values) 185schema.Attributes.Clear(); 233foreach (XmlSchemaAttribute? attribute in _schema.Attributes.Values) 287foreach (XmlSchemaAttribute? attribute in _schema.Attributes.Values) 1989XmlSchemaAttribute? a = (XmlSchemaAttribute?)_schema!.Attributes[xa.RefName];
System\Xml\Schema\SchemaCollectionpreProcessor.cs (4)
109schema.Attributes.Clear(); 506foreach (XmlSchemaAttribute? attribute in includedSchema.Attributes.Values) 508AddToTable(schema.Attributes, attribute!.QualifiedName, attribute); 542AddToTable(schema.Attributes, attribute.QualifiedName, attribute);
System\Xml\Schema\SchemaSetCompiler.cs (1)
67foreach (XmlSchemaAttribute? attribute in schema.Attributes.Values)
System\Xml\Schema\XmlSchemaSet.cs (2)
1362foreach (XmlSchemaAttribute? attributeToRemove in schema.Attributes.Values) 1414XmlSchemaObject builtInAttribute = schemaForXmlNS.Attributes[qname]!;
System\Xml\Serialization\XmlSchemas.cs (1)
252ret = schema.Attributes[name];