15 references to Schemas
System.Private.Xml (15)
System\Xml\Serialization\SchemaImporter.cs (1)
44Schemas.SetCache(Context.Cache, Context.ShareTypes);
System\Xml\Serialization\XmlSchemaImporter.cs (14)
162XmlSchemaObject? xso = Schemas.SchemaSet.GlobalTypes[typeName]; 363object? type = Schemas.Find(qname, typeof(XmlSchemaType)); 378foreach (XmlSchema schema in Schemas) 380if (Schemas.IsReference(schema)) continue; 527structMapping.IsReference = Schemas.IsReference(type); 589structMapping.IsReference = Schemas.IsReference(dataType); 1042foreach (XmlSchema schema in Schemas.SchemaSet.Schemas()) 1704enumMapping.IsReference = Schemas.IsReference(dataType); 1817XmlSchemaGroup? group = (XmlSchemaGroup?)Schemas.Find(name, typeof(XmlSchemaGroup)); 1826XmlSchemaAttributeGroup? group = (XmlSchemaAttributeGroup?)Schemas.Find(name, typeof(XmlSchemaAttributeGroup)); 1882XmlSchemaSimpleType? dataType = (XmlSchemaSimpleType?)Schemas.Find(name, typeof(XmlSchemaSimpleType)); 1913object? type = Schemas.Find(name, typeof(XmlSchemaComplexType)); 1924XmlSchemaElement? element = (XmlSchemaElement?)Schemas.Find(name, typeof(XmlSchemaElement)); 1932XmlSchemaAttribute? attribute = (XmlSchemaAttribute?)Schemas.Find(name, typeof(XmlSchemaAttribute));