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