1 write to Namespaces
System.Xml (1)
System\Xml\Schema\XsdBuilder.cs (1)
765
this.xso.Namespaces.
Namespaces
= this.namespaces;
19 references to Namespaces
System.Xml (19)
System\Xml\Schema\SchemaNamespacemanager.cs (2)
26
namespaces = current.Namespaces.
Namespaces
;
42
namespaces = current.Namespaces.
Namespaces
;
System\Xml\Schema\XmlSchema.cs (3)
178
ignoreXS = this.Namespaces.
Namespaces
["xs"] != null || this.Namespaces.
Namespaces
.ContainsValue(XmlReservedNs.NsXs);
192
Hashtable serializerNS = this.Namespaces.
Namespaces
;
System\Xml\Serialization\Types.cs (1)
1227
string wsdlNs = (string)parent.Namespaces.
Namespaces
[ns];
System\Xml\Serialization\XmlSerializationWriter.cs (8)
426
foreach(string alias in namespaces.
Namespaces
.Keys) {
427
string aliasNs = (string)namespaces.
Namespaces
[alias];
438
usedPrefixes = ListUsedPrefixes(namespaces.
Namespaces
, aliasBase);
453
foreach(string alias in namespaces.
Namespaces
.Keys) {
454
string aliasNs = (string)namespaces.
Namespaces
[alias];
479
foreach(string alias in namespaces.
Namespaces
.Keys) {
1264
foreach (DictionaryEntry entry in xmlns.
Namespaces
) {
1268
string oldNs = namespaces.
Namespaces
[prefix] as string;
System\Xml\Serialization\XmlSerializerNamespaces.cs (5)
37
this.namespaces = (Hashtable)namespaces.
Namespaces
.Clone();
66
Namespaces
[prefix] = ns;
84
get { return
Namespaces
.Count; }
92
foreach(string key in
Namespaces
.Keys) {
93
namespaceList.Add(new XmlQualifiedName(key, (string)
Namespaces
[key]));