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