8 writes to Namespace
dotnet-svcutil-lib (8)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
491
import.
Namespace
= nullString;
591
import.
Namespace
= childURI;
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
1208
builder._import.
Namespace
= value;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
142
import.
Namespace
= ns;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
346
import.
Namespace
= ns;
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (1)
463
import.
Namespace
= ns;
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (1)
54
import.
Namespace
= ns;
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
12911
o.
@Namespace
= CollapseWhitespace(Reader.Value);
29 references to Namespace
dotnet-svcutil-lib (29)
FrameworkFork\Microsoft.Xml\Xml\schema\Inference\infer.cs (2)
478
if (import.
Namespace
== childURI)
582
if (import.
Namespace
== childURI)
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (6)
325
string importNS = import.
Namespace
!= null ? import.
Namespace
: string.Empty;
508
ns = import.
Namespace
;
602
string importNS = import.
Namespace
;
717
string importNS = import.
Namespace
!= null ? import.
Namespace
: string.Empty;
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (9)
151
if (include is XmlSchemaImport && ((XmlSchemaImport)include).
Namespace
== XmlReservedNs.NsXml)
171
string importNS = import.
Namespace
!= null ? import.
Namespace
: string.Empty;
207
if (include is XmlSchemaImport && ((XmlSchemaImport)include).
Namespace
== XmlReservedNs.NsXml)
281
ns = import.
Namespace
;
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);
411
string ns = ((XmlSchemaImport)include).
Namespace
;
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
164
if (import.
Namespace
== ns)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaExporter.cs (1)
376
if (NamespacesEqual(import.
Namespace
, ns))
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (3)
292
if (ns == ((XmlSchemaImport)external).
Namespace
)
454
if (external is XmlSchemaImport && ((XmlSchemaImport)external).
Namespace
== ns)
490
AddImport(originals, ((XmlSchemaImport)external).
Namespace
);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MessageContractImporter.cs (2)
1014
if (import != null && import.
Namespace
== fakeXsdSchema.TargetNamespace)
1033
foreach (XmlSchema s in allSchemas.Schemas(import.
Namespace
))
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SchemaHelper.cs (1)
48
if (item is XmlSchemaImport && NamespacesEqual(ns, ((XmlSchemaImport)item).
Namespace
))
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (1)
5035
WriteAttribute(@"namespace", @"", ((global::System.String)o.
@Namespace
));
Metadata\MetadataDocumentLoader.cs (1)
337
var schemaNamespace = schemaImport != null ? schemaImport.
Namespace
: schema.TargetNamespace;
Metadata\MetadataDocumentSaver.cs (2)
203
if (schemaImport != null && !string.IsNullOrEmpty(schemaImport.
Namespace
))
205
UnresolvedReferences.Add(new UnresolvedUri { Schema = schema, SchemaExternal = schemaExternal, Namespace = schemaImport.
Namespace
});