4 instantiations of XmlSchemas
dotnet-svcutil-lib (4)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaImporter.cs (1)
110_schemas = new XmlSchemas();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (2)
1930_encodedSchemas = new XmlSchemas(); 1931_literalSchemas = new XmlSchemas();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (1)
1551get { if (_schemas == null) _schemas = new XmlSchemas(); return _schemas; }
63 references to XmlSchemas
dotnet-svcutil-lib (63)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Advanced\SchemaImporterExtension.cs (3)
25public virtual string ImportSchemaType(string name, string ns, XmlSchemaObject context, XmlSchemas schemas, XmlSchemaImporter importer, 32public virtual string ImportSchemaType(XmlSchemaType type, XmlSchemaObject context, XmlSchemas schemas, XmlSchemaImporter importer, 39public virtual string ImportAnyElement(XmlSchemaAny any, bool mixed, XmlSchemas schemas, XmlSchemaImporter importer,
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (4)
145internal XmlSchemaObject AddItem(XmlSchemaObject item, XmlQualifiedName qname, XmlSchemas schemas) 232internal void GenerateSchemaGraph(XmlSchemas schemas) 273private XmlSchemas _schemas; 277internal SchemaGraph(Hashtable scope, XmlSchemas schemas)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Mappings.cs (1)
1291XmlSchemas.Preprocess(Schema);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaImporter.cs (7)
29private XmlSchemas _schemas; 40internal SchemaImporter(XmlSchemas schemas, CodeGenerationOptions options, CodeDomProvider codeProvider, ImportContext context) 44schemas.AddReference(XmlSchemas.XsdSchema); 45schemas.SchemaSet.Add(XmlSchemas.XsdSchema); 49schemas.AddReference(XmlSchemas.XmlSchema); 50schemas.SchemaSet.Add(XmlSchemas.XmlSchema); 105internal XmlSchemas Schemas
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (2)
18private XmlSchemas _schemas; 31public SoapSchemaExporter(XmlSchemas schemas)
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (14)
27public SoapSchemaImporter(XmlSchemas schemas) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext()) { } 33public SoapSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext(typeIdentifiers, false)) { } 39public SoapSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers, CodeGenerationOptions options) : base(schemas, options, null, new ImportContext(typeIdentifiers, false)) { } 45public SoapSchemaImporter(XmlSchemas schemas, CodeGenerationOptions options, ImportContext context) : base(schemas, options, null, context) { } 51public SoapSchemaImporter(XmlSchemas schemas, CodeGenerationOptions options, CodeDomProvider codeProvider, ImportContext context) : base(schemas, options, codeProvider, context) { } 174XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 196XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 212XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 217XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 232if (XmlSchemas.IsDataSet(schema)) continue; 233XmlSchemas.Preprocess(schema); 300XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 394XmlQualifiedName parentType = XmlSchemas.GetParentName(group); 403XmlQualifiedName parentType = XmlSchemas.GetParentName(particle);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (2)
26private XmlSchemas _schemas; 38public XmlSchemaExporter(XmlSchemas schemas)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (10)
36public XmlSchemaImporter(XmlSchemas schemas) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext()) { } 42public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers) : base(schemas, CodeGenerationOptions.GenerateProperties, null, new ImportContext(typeIdentifiers, false)) { } 48public XmlSchemaImporter(XmlSchemas schemas, CodeIdentifiers typeIdentifiers, CodeGenerationOptions options) : base(schemas, options, null, new ImportContext(typeIdentifiers, false)) { } 54public XmlSchemaImporter(XmlSchemas schemas, CodeGenerationOptions options, ImportContext context) : base(schemas, options, null, context) { } 60public XmlSchemaImporter(XmlSchemas schemas, CodeGenerationOptions options, CodeDomProvider codeProvider, ImportContext context) : base(schemas, options, codeProvider, context) 331XmlQualifiedName parentType = XmlSchemas.GetParentName(element); 510if (XmlSchemas.IsDataSet(schema)) continue; 511XmlSchemas.Preprocess(schema); 2089XmlSchemas.Preprocess(schema); 2161XmlSchemas.Preprocess(schema);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (6)
163public void Add(XmlSchemas schemas) 628XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 650XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 661XmlQualifiedName parentName = XmlSchemas.GetParentName(o); 913private XmlSchemas _list; 916public XmlSchemaEnumerator(XmlSchemas list)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (8)
887private static void CollectEncodedAndLiteralSchemas(WsdlNS.ServiceDescriptionCollection serviceDescriptions, XmlSchemas encodedSchemas, XmlSchemas literalSchemas, XmlSchemaSet allSchemas) 945foreach (XmlSchemas schemas in new XmlSchemas[] { encodedSchemas, literalSchemas }) 1005private static void AddSoapEncodingSchemaIfNeeded(XmlSchemas schemas) 1041private static void AddSchema(XmlSchema schema, bool isEncoded, bool isLiteral, XmlSchemas encodedSchemas, XmlSchemas literalSchemas, Hashtable references) 1907private XmlSchemas _literalSchemas,_encodedSchemas;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (2)
1525private XmlSchemas _schemas; 1549public XmlSchemas Schemas
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (4)
2282Microsoft.Xml.Serialization.XmlSchemas a = (Microsoft.Xml.Serialization.XmlSchemas)o.@Schemas; 8418Microsoft.Xml.Serialization.XmlSchemas a_4 = (Microsoft.Xml.Serialization.XmlSchemas)o.@Schemas;