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