2 instantiations of XmlSchemas
System.Private.Xml (1)
System\Xml\Serialization\SchemaImporter.cs (1)
64internal XmlSchemas Schemas => _schemas ??= new XmlSchemas();
System.Web.Services.Description (1)
System\Web\Services\Description\ServiceDescription.cs (1)
1098get { if (_schemas == null) { _schemas = new XmlSchemas(); } return _schemas; }
35 references to XmlSchemas
netstandard (1)
netstandard.cs (1)
2433[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.XmlSchemas))]
System.Private.Xml (26)
System\Xml\Serialization\ImportContext.cs (3)
155internal void GenerateSchemaGraph(XmlSchemas schemas) 196private readonly XmlSchemas _schemas; 201internal SchemaGraph(Hashtable scope, XmlSchemas schemas)
System\Xml\Serialization\Mappings.cs (1)
1223XmlSchemas.Preprocess(Schema);
System\Xml\Serialization\SchemaImporter.cs (7)
19private XmlSchemas _schemas; 29internal SchemaImporter(XmlSchemas schemas, CodeGenerationOptions options, ImportContext context) 33schemas.AddReference(XmlSchemas.XsdSchema); 34schemas.SchemaSet.Add(XmlSchemas.XsdSchema); 38schemas.AddReference(XmlSchemas.XmlSchema); 39schemas.SchemaSet.Add(XmlSchemas.XmlSchema); 64internal XmlSchemas Schemas => _schemas ??= new XmlSchemas();
System\Xml\Serialization\XmlSchemaExporter.cs (2)
19private readonly XmlSchemas _schemas; 27public XmlSchemaExporter(XmlSchemas schemas)
System\Xml\Serialization\XmlSchemaImporter.cs (7)
22public XmlSchemaImporter(XmlSchemas schemas) : base(schemas, CodeGenerationOptions.GenerateProperties, new ImportContext()) { } 25public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers? typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, new ImportContext(typeIdentifiers, false)) { } 269XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 381if (XmlSchemas.IsDataSet(schema)) continue; 382XmlSchemas.Preprocess(schema); 1958XmlSchemas.Preprocess(schema); 1985XmlSchemas.Preprocess(schema);
System\Xml\Serialization\XmlSchemas.cs (6)
107public void Add(XmlSchemas schemas) 517XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 538XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 549XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 785private readonly XmlSchemas _list; 789public XmlSchemaEnumerator(XmlSchemas list)
System.Web.Services.Description (6)
System\Web\Services\Description\ServiceDescription.cs (2)
1080private XmlSchemas _schemas; 1096public XmlSchemas Schemas
System\Web\Services\Description\ServiceDescriptionSerializer.cs (4)
2116global::System.Xml.Serialization.XmlSchemas a = (global::System.Xml.Serialization.XmlSchemas)o.@Schemas; 8256global::System.Xml.Serialization.XmlSchemas a_4 = (global::System.Xml.Serialization.XmlSchemas)o.@Schemas;
System.Xml (1)
System.Xml.cs (1)
158[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.XmlSchemas))]
System.Xml.XmlSerializer (1)
artifacts\obj\System.Xml.XmlSerializer\Debug\net9.0\System.Xml.XmlSerializer.Forwards.cs (1)
56[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.Serialization.XmlSchemas))]