25 references to Schemas
dotnet-svcutil-lib (25)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaImporter.cs (1)
56Schemas.SetCache(Context.Cache, Context.ShareTypes);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (7)
229foreach (XmlSchema schema in Schemas) 231if (Schemas.IsReference(schema)) continue; 324structMapping.IsReference = Schemas.IsReference(type); 630enumMapping.IsReference = Schemas.IsReference(dataType); 713XmlSchemaSimpleType dataType = (XmlSchemaSimpleType)Schemas.Find(name, typeof(XmlSchemaSimpleType)); 730object type = Schemas.Find(name, typeof(XmlSchemaComplexType)); 745object type = Schemas.Find(name, typeof(XmlSchemaComplexType));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (17)
221XmlSchemaObject xso = Schemas.SchemaSet.GlobalTypes[typeName]; 492object type = Schemas.Find(qname, typeof(XmlSchemaType)); 507foreach (XmlSchema schema in Schemas) 509if (Schemas.IsReference(schema)) continue; 653structMapping.IsReference = Schemas.IsReference(type); 714structMapping.IsReference = Schemas.IsReference(dataType); 1175foreach (XmlSchema schema in Schemas.SchemaSet.Schemas()) 1845enumMapping.IsReference = Schemas.IsReference(dataType); 1957XmlSchemaGroup group = (XmlSchemaGroup)Schemas.Find(name, typeof(XmlSchemaGroup)); 1966XmlSchemaAttributeGroup group = (XmlSchemaAttributeGroup)Schemas.Find(name, typeof(XmlSchemaAttributeGroup)); 2019XmlSchemaSimpleType dataType = (XmlSchemaSimpleType)Schemas.Find(name, typeof(XmlSchemaSimpleType)); 2045object type = Schemas.Find(name, typeof(XmlSchemaComplexType)); 2055XmlSchemaElement element = (XmlSchemaElement)Schemas.Find(name, typeof(XmlSchemaElement)); 2063XmlSchemaAttribute attribute = (XmlSchemaAttribute)Schemas.Find(name, typeof(XmlSchemaAttribute)); 2103string typeName = ex.ImportAnyElement(any, mixed, Schemas, this, compileUnit, mainNamespace, Options, CodeProvider); 2118string typeName = ex.ImportSchemaType(name, ns, context, Schemas, this, compileUnit, mainNamespace, Options, CodeProvider); 2133string typeName = ex.ImportSchemaType(type, context, Schemas, this, compileUnit, mainNamespace, Options, CodeProvider);