25 references to Schemas
System.Xml (25)
System\Xml\Serialization\SchemaImporter.cs (1)
57Schemas.SetCache(Context.Cache, Context.ShareTypes);
System\Xml\Serialization\SoapSchemaImporter.cs (7)
213foreach (XmlSchema schema in Schemas) { 214if (Schemas.IsReference(schema)) continue; 295structMapping.IsReference = Schemas.IsReference(type); 558enumMapping.IsReference = Schemas.IsReference(dataType); 631XmlSchemaSimpleType dataType = (XmlSchemaSimpleType)Schemas.Find(name, typeof(XmlSchemaSimpleType)); 645object type = Schemas.Find(name, typeof(XmlSchemaComplexType)); 657object type = Schemas.Find(name, typeof(XmlSchemaComplexType));
System\Xml\Serialization\XmlSchemaImporter.cs (17)
204XmlSchemaObject xso = Schemas.SchemaSet.GlobalTypes[typeName]; 435object type = Schemas.Find(qname, typeof(XmlSchemaType)); 448foreach (XmlSchema schema in Schemas) { 449if (Schemas.IsReference(schema)) continue; 572structMapping.IsReference = Schemas.IsReference(type); 626structMapping.IsReference = Schemas.IsReference(dataType); 1015foreach (XmlSchema schema in Schemas.SchemaSet.Schemas()) { 1606enumMapping.IsReference = Schemas.IsReference(dataType); 1704XmlSchemaGroup group = (XmlSchemaGroup)Schemas.Find(name, typeof(XmlSchemaGroup)); 1712XmlSchemaAttributeGroup group = (XmlSchemaAttributeGroup)Schemas.Find(name, typeof(XmlSchemaAttributeGroup)); 1757XmlSchemaSimpleType dataType = (XmlSchemaSimpleType)Schemas.Find(name, typeof(XmlSchemaSimpleType)); 1777object type = Schemas.Find(name, typeof(XmlSchemaComplexType)); 1785XmlSchemaElement element = (XmlSchemaElement)Schemas.Find(name, typeof(XmlSchemaElement)); 1792XmlSchemaAttribute attribute = (XmlSchemaAttribute)Schemas.Find(name, typeof(XmlSchemaAttribute)); 1824string typeName = ex.ImportAnyElement(any, mixed, Schemas, this, compileUnit, mainNamespace, Options, CodeProvider); 1836string typeName = ex.ImportSchemaType(name, ns, context, Schemas, this, compileUnit, mainNamespace, Options, CodeProvider); 1848string typeName = ex.ImportSchemaType(type, context, Schemas, this, compileUnit, mainNamespace, Options, CodeProvider);