8 instantiations of XmlSchemaImport
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
485
XmlSchemaImport import = new
XmlSchemaImport
();
589
XmlSchemaImport import = new
XmlSchemaImport
();
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1202
builder._xso = builder._import = new
XmlSchemaImport
();
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
141
XmlSchemaImport import = new
XmlSchemaImport
();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
344
XmlSchemaImport import = new
XmlSchemaImport
();
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (1)
462
XmlSchemaImport import = new
XmlSchemaImport
();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (1)
52
XmlSchemaImport import = new
XmlSchemaImport
();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12893
o = new Microsoft.Xml.Schema.
XmlSchemaImport
();
72 references to XmlSchemaImport
dotnet-svcutil-lib (72)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (6)
473
XmlSchemaImport
import = parentSchema.Includes[i] as
XmlSchemaImport
;
485
XmlSchemaImport
import = new XmlSchemaImport();
575
XmlSchemaImport
import = parentSchema.Includes[i] as
XmlSchemaImport
;
589
XmlSchemaImport
import = new XmlSchemaImport();
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (9)
323
XmlSchemaImport
import = include as
XmlSchemaImport
;
496
XmlSchemaImport
import;
505
if (include is
XmlSchemaImport
)
507
import = include as
XmlSchemaImport
;
601
XmlSchemaImport
import = include as
XmlSchemaImport
;
716
XmlSchemaImport
import = external as
XmlSchemaImport
;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (18)
151
if (include is
XmlSchemaImport
&& ((
XmlSchemaImport
)include).Namespace == XmlReservedNs.NsXml)
168
if (xsc != null && include is
XmlSchemaImport
)
170
XmlSchemaImport
import = (
XmlSchemaImport
)include;
185
if (subInc is
XmlSchemaImport
)
187
XmlSchemaImport
subImp = (
XmlSchemaImport
)subInc;
207
if (include is
XmlSchemaImport
&& ((
XmlSchemaImport
)include).Namespace == XmlReservedNs.NsXml)
269
XmlSchemaImport
import;
278
import = schema.Includes[i] as
XmlSchemaImport
;
392
else if (include is
XmlSchemaImport
)
394
if (((
XmlSchemaImport
)include).Namespace == null && schema.TargetNamespace == null)
398
else if (((
XmlSchemaImport
)include).Namespace == schema.TargetNamespace)
402
Preprocess(include.Schema, ((
XmlSchemaImport
)include).Namespace, Compositor.Import);
409
else if (include is
XmlSchemaImport
)
411
string ns = ((
XmlSchemaImport
)include).Namespace;
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (1)
349
XmlElement("import", typeof(
XmlSchemaImport
)),
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (2)
674
private
XmlSchemaImport
_import;
996
_import = (
XmlSchemaImport
)container;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (5)
141
XmlSchemaImport
import = new XmlSchemaImport();
157
private
XmlSchemaImport
FindImport(XmlSchema schema, string ns)
161
if (item is
XmlSchemaImport
)
163
XmlSchemaImport
import = (
XmlSchemaImport
)item;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (5)
344
XmlSchemaImport
import = new XmlSchemaImport();
369
private
XmlSchemaImport
FindImport(XmlSchema schema, string ns)
373
if (item is
XmlSchemaImport
)
375
XmlSchemaImport
import = (
XmlSchemaImport
)item;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (8)
290
if (external is
XmlSchemaImport
)
292
if (ns == ((
XmlSchemaImport
)external).Namespace)
454
if (external is
XmlSchemaImport
&& ((
XmlSchemaImport
)external).Namespace == ns)
462
XmlSchemaImport
import = new XmlSchemaImport();
481
if (external is
XmlSchemaImport
)
490
AddImport(originals, ((
XmlSchemaImport
)external).Namespace);
667
string itemType = o is
XmlSchemaImport
? "import" : o is XmlSchemaInclude ? "include" : o is XmlSchemaRedefine ? "redefine" : o.GetType().Name;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (5)
1013
XmlSchemaImport
import = include as
XmlSchemaImport
;
1030
if (external is
XmlSchemaImport
)
1032
XmlSchemaImport
import = (
XmlSchemaImport
)external;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (3)
48
if (item is
XmlSchemaImport
&& NamespacesEqual(ns, ((
XmlSchemaImport
)item).Namespace))
52
XmlSchemaImport
import = new XmlSchemaImport();
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (6)
2357
else if (ai is Microsoft.Xml.Schema.
XmlSchemaImport
)
2359
Write13_XmlSchemaImport(@"import", @"http://www.w3.org/2001/XMLSchema", ((Microsoft.Xml.Schema.
XmlSchemaImport
)ai), false, false);
5001
private void Write13_XmlSchemaImport(string n, string ns, Microsoft.Xml.Schema.
XmlSchemaImport
o, bool isNullable, bool needType)
5011
if (t == typeof(Microsoft.Xml.Schema.
XmlSchemaImport
))
12877
private Microsoft.Xml.Schema.
XmlSchemaImport
Read13_XmlSchemaImport(bool isNullable, bool checkType)
12892
Microsoft.Xml.Schema.
XmlSchemaImport
o;
Metadata\MetadataDocumentLoader.cs (2)
336
var
schemaImport = externalSchema as XmlNS.Schema.
XmlSchemaImport
;
Metadata\MetadataDocumentSaver.cs (2)
202
var
schemaImport = schemaExternal as XmlNS.Schema.
XmlSchemaImport
;