1 override of Add
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\NameTable.cs (1)
67
public override string
Add
(string key)
775 references to Add
dotnet-svcutil-lib (775)
FrameworkFork\Microsoft.Xml\Xml\BinaryXml\XmlBinaryReader.cs (14)
361
_xml = _xnt.
Add
("xml");
362
_xmlns = _xnt.
Add
("xmlns");
363
_nsxmlns = _xnt.
Add
(XmlReservedNs.NsXmlNs);
381
AddInitNamespace(_xml, _xnt.
Add
(XmlReservedNs.NsXml));
1916
symtable[symNum] = _xnt.
Add
(txt);
1949
lnameStr = _xnt.
Add
(prefixStr.Substring(6));
2522
name = new QName(_xmlns, _xnt.
Add
(decl.prefix), _nsxmlns);
2563
_attributes[0].Set(new QName(string.Empty, _xnt.
Add
("version"), string.Empty), ParseText());
2568
_attributes[1].Set(new QName(string.Empty, _xnt.
Add
("encoding"), string.Empty), ParseText());
2579
_attributes[_attrCount].Set(new QName(string.Empty, _xnt.
Add
("standalone"), string.Empty), (standalone == 1) ? "yes" : "no");
2588
QName xmlDeclQName = new QName(String.Empty, _xnt.
Add
("xml"), String.Empty);
2683
string nsuri = _xnt.
Add
(ValueAsString(token));
3148
_attributes[_attrCount++].Set(new QName(string.Empty, _xnt.
Add
("SYSTEM"), string.Empty), ParseText());
3153
_attributes[_attrCount++].Set(new QName(string.Empty, _xnt.
Add
("PUBLIC"), string.Empty), ParseText());
FrameworkFork\Microsoft.Xml\Xml\Cache\XPathDocumentBuilder.cs (11)
106
_idxNmsp = NewNamespaceNode(out _pageNmsp, _nameTable.
Add
("xml"), _nameTable.
Add
(XmlReservedNs.NsXml), null, 0);
152
prefix = _nameTable.
Add
(prefix);
153
localName = _nameTable.
Add
(localName);
154
ns = _nameTable.
Add
(ns);
289
prefix = _nameTable.
Add
(prefix);
290
localName = _nameTable.
Add
(localName);
291
namespaceName = _nameTable.
Add
(namespaceName);
350
name = _nameTable.
Add
(name);
492
prefix = _nameTable.
Add
(prefix);
494
namespaceName = _nameTable.
Add
(namespaceName);
FrameworkFork\Microsoft.Xml\Xml\Core\ValidatingReaderNodeData.cs (1)
90
_nameWPrefix = nameTable.
Add
(string.Concat(_prefix, ":", _localName));
FrameworkFork\Microsoft.Xml\Xml\Core\XmlReader.cs (10)
120
return NameTable.
Add
(string.Concat(Prefix, ":", LocalName));
1012
name = NameTable.
Add
(name);
1038
localName = NameTable.
Add
(localName);
1039
namespaceURI = NameTable.
Add
(namespaceURI);
1080
name = NameTable.
Add
(name);
1126
localName = NameTable.
Add
(localName);
1127
namespaceURI = NameTable.
Add
(namespaceURI);
1150
name = NameTable.
Add
(name);
1182
localName = NameTable.
Add
(localName);
1183
namespaceURI = NameTable.
Add
(namespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlSubtreeReader.cs (3)
103
_xmlns = reader.NameTable.
Add
("xmlns");
104
_xmlnsUri = reader.NameTable.
Add
(XmlReservedNs.NsXmlNs);
1316
_nsAttributes[index].Set(XmlNodeType.Attribute, prefix, _xmlns, reader.NameTable.
Add
(string.Concat(_xmlns, ":", prefix)), _xmlnsUri, ns);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImpl.cs (17)
329
nt.
Add
(string.Empty);
340
_xml = nt.
Add
("xml");
341
_xmlNs = nt.
Add
("xmlns");
402
nt.
Add
(string.Empty);
403
_xml = nt.
Add
("xml");
404
_xmlNs = nt.
Add
("xmlns");
5158
string ns = _nameTable.
Add
(attr.StringValue);
5159
attr.ns = _nameTable.
Add
(XmlReservedNs.NsXmlNs);
5176
string ns = _nameTable.
Add
(attr.StringValue);
7807
newAttr.SetNamedNode(XmlNodeType.Attribute, _nameTable.
Add
(name));
8968
name = _nameTable.
Add
(name);
9229
_nameTable.
Add
(XmlReservedNs.NsXs); // Note: this is equal to XmlReservedNs.NsXsd in Everett
9230
_nameTable.
Add
(XmlReservedNs.NsXsi);
9231
_nameTable.
Add
(XmlReservedNs.NsDataType);
9364
string localName = _nameTable.
Add
(attrDef.Name.Name);
9365
string prefix = _nameTable.
Add
(attrDef.Prefix);
9366
string ns = _nameTable.
Add
(attrDef.Name.Namespace);
FrameworkFork\Microsoft.Xml\Xml\Core\XmlTextReaderImplHelpers.cs (1)
680
nameWPrefix = nt.
Add
(string.Concat(prefix, ":", localName));
FrameworkFork\Microsoft.Xml\Xml\Core\XsdValidatingReader.cs (12)
168
_nsXmlNs = _coreReaderNameTable.
Add
(XmlReservedNs.NsXmlNs);
169
_nsXs = _coreReaderNameTable.
Add
(XmlReservedNs.NsXs);
170
_nsXsi = _coreReaderNameTable.
Add
(XmlReservedNs.NsXsi);
171
_xsiType = _coreReaderNameTable.
Add
("type");
172
_xsiNil = _coreReaderNameTable.
Add
("nil");
173
_xsiSchemaLocation = _coreReaderNameTable.
Add
("schemaLocation");
174
_xsiNoNamespaceSchemaLocation = _coreReaderNameTable.
Add
("noNamespaceSchemaLocation");
175
_xsdSchema = _coreReaderNameTable.
Add
("schema");
2107
attrPrefix = _coreReaderNameTable.
Add
(attrPrefix);
2108
attrLocalName = _coreReaderNameTable.
Add
(attrLocalName);
2149
attrPrefix = _coreReaderNameTable.
Add
(attrPrefix);
2150
attrLocalName = _coreReaderNameTable.
Add
(attrLocalName);
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (6)
79
_nsXmlNs = _nameTable.
Add
(XmlReservedNs.NsXmlNs);
80
_nsXsi = _nameTable.
Add
(XmlReservedNs.NsXsi);
81
_xsiType = _nameTable.
Add
("type");
82
_xsiNil = _nameTable.
Add
("nil");
484
attributeNS = _nameTable.
Add
(attributeNS); //atomize ns
488
defaultNS = _nameTable.
Add
(pair.Value);
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (1)
711
ns = this.NameTable.
Add
(ns);
FrameworkFork\Microsoft.Xml\Xml\Dom\DomNameTable.cs (3)
91
prefix = _nameTable.
Add
(prefix);
92
localName = _nameTable.
Add
(localName);
93
ns = _nameTable.
Add
(ns);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (17)
100
nt.
Add
(string.Empty);
101
strDocumentName = nt.
Add
("#document");
102
strDocumentFragmentName = nt.
Add
("#document-fragment");
103
strCommentName = nt.
Add
("#comment");
104
strTextName = nt.
Add
("#text");
105
strCDataSectionName = nt.
Add
("#cdata-section");
106
strEntityName = nt.
Add
("#entity");
107
strID = nt.
Add
("id");
108
strNonSignificantWhitespaceName = nt.
Add
("#whitespace");
109
strSignificantWhitespaceName = nt.
Add
("#significant-whitespace");
110
strXmlns = nt.
Add
("xmlns");
111
strXml = nt.
Add
("xml");
112
strSpace = nt.
Add
("space");
113
strLang = nt.
Add
("lang");
114
strReservedXmlns = nt.
Add
(XmlReservedNs.NsXmlNs);
115
strReservedXml = nt.
Add
(XmlReservedNs.NsXml);
116
strEmpty = nt.
Add
(String.Empty);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElementList.cs (5)
55
_localName = nameTable.
Add
(_localName);
56
_namespaceURI = nameTable.
Add
(_namespaceURI);
75
_asterisk = nt.
Add
("*");
76
_name = nt.
Add
(name);
86
_asterisk = nt.
Add
("*");
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlEntity.cs (1)
25
_name = doc.NameTable.
Add
(name);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlEntityReference.cs (1)
48
_name = doc.NameTable.
Add
(name);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlName.cs (1)
102
_name = ownerDoc.NameTable.
Add
(n);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (1)
1154
namespaceURI = doc.NameTable.
Add
(namespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (15)
866
return _nameTable.
Add
(XmlReservedNs.NsXmlNs);
870
return _nameTable.
Add
(XmlReservedNs.NsXml);
918
return _nameTable.
Add
(XmlReservedNs.NsXmlNs);
922
return _nameTable.
Add
(XmlReservedNs.NsXml);
926
return _nameTable.
Add
(string.Empty);
940
return _nameTable.
Add
("xmlns");
944
return _nameTable.
Add
("xml");
977
return _nameTable.
Add
(pref);
1017
dict.Add(_nameTable.
Add
(string.Empty), _nameTable.
Add
(a.Value));
1025
dict.Add(_nameTable.
Add
(localName), _nameTable.
Add
(a.Value));
1051
dict.Add(_nameTable.
Add
("xml"), _nameTable.
Add
(XmlReservedNs.NsXml));
1938
ns = _readerNav.NameTable.
Add
(ns);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNotation.cs (1)
19
_name = doc.NameTable.
Add
(name);
FrameworkFork\Microsoft.Xml\Xml\schema\BaseProcessor.cs (3)
34
_nsXml = nameTable.
Add
(XmlReservedNs.NsXml);
86
string ns = _nameTable.
Add
(qname.Namespace);
109
string ns = _nameTable.
Add
(qname.Namespace);
FrameworkFork\Microsoft.Xml\Xml\schema\DatatypeImplementation.cs (1)
2968
nameTable.
Add
(s);
FrameworkFork\Microsoft.Xml\Xml\schema\DtdParser.cs (3)
291
_schemaInfo.DocTypeName = new XmlQualifiedName(_nameTable.
Add
(docTypeName));
295
_schemaInfo.DocTypeName = new XmlQualifiedName(_nameTable.
Add
(docTypeName.Substring(0, colonPos)),
296
_nameTable.
Add
(docTypeName.Substring(colonPos + 1)));
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (1)
216
_xmlns = _nameTable.
Add
("xmlns");
FrameworkFork\Microsoft.Xml\Xml\schema\Preprocessor.cs (5)
95
_xmlns = NameTable.
Add
("xmlns");
96
_nsXsi = NameTable.
Add
(XmlReservedNs.NsXsi);
554
schema.TargetNamespace = tns = NameTable.
Add
(tns);
2083
xso.IdAttribute = NameTable.
Add
(XmlConvert.VerifyNCName(xso.IdAttribute));
2124
xso.NameAttribute = NameTable.
Add
(name);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaCollectionPreprocessor.cs (4)
57
_xmlns = NameTable.
Add
("xmlns");
302
schema.TargetNamespace = tns = NameTable.
Add
(tns);
1730
xso.IdAttribute = NameTable.
Add
(XmlConvert.VerifyNCName(xso.IdAttribute));
1765
xso.NameAttribute = NameTable.
Add
(name);
FrameworkFork\Microsoft.Xml\Xml\schema\SchemaNames.cs (137)
171
NsDataType = nameTable.
Add
(XmlReservedNs.NsDataType);
172
NsDataTypeAlias = nameTable.
Add
(XmlReservedNs.NsDataTypeAlias);
173
NsDataTypeOld = nameTable.
Add
(XmlReservedNs.NsDataTypeOld);
174
NsXml = nameTable.
Add
(XmlReservedNs.NsXml);
175
NsXmlNs = nameTable.
Add
(XmlReservedNs.NsXmlNs);
176
NsXdr = nameTable.
Add
(XmlReservedNs.NsXdr);
177
NsXdrAlias = nameTable.
Add
(XmlReservedNs.NsXdrAlias);
178
NsXs = nameTable.
Add
(XmlReservedNs.NsXs);
179
NsXsi = nameTable.
Add
(XmlReservedNs.NsXsi);
180
XsiType = nameTable.
Add
("type");
181
XsiNil = nameTable.
Add
("nil");
182
XsiSchemaLocation = nameTable.
Add
("schemaLocation");
183
XsiNoNamespaceSchemaLocation = nameTable.
Add
("noNamespaceSchemaLocation");
184
XsdSchema = nameTable.
Add
("schema");
185
XdrSchema = nameTable.
Add
("Schema");
188
QnPCData = new XmlQualifiedName(nameTable.
Add
("#PCDATA"));
189
QnXml = new XmlQualifiedName(nameTable.
Add
("xml"));
190
QnXmlNs = new XmlQualifiedName(nameTable.
Add
("xmlns"), NsXmlNs);
191
QnDtDt = new XmlQualifiedName(nameTable.
Add
("dt"), NsDataType);
192
QnXmlLang = new XmlQualifiedName(nameTable.
Add
("lang"), NsXml);
195
QnName = new XmlQualifiedName(nameTable.
Add
("name"));
196
QnType = new XmlQualifiedName(nameTable.
Add
("type"));
197
QnMaxOccurs = new XmlQualifiedName(nameTable.
Add
("maxOccurs"));
198
QnMinOccurs = new XmlQualifiedName(nameTable.
Add
("minOccurs"));
199
QnInfinite = new XmlQualifiedName(nameTable.
Add
("*"));
200
QnModel = new XmlQualifiedName(nameTable.
Add
("model"));
201
QnOpen = new XmlQualifiedName(nameTable.
Add
("open"));
202
QnClosed = new XmlQualifiedName(nameTable.
Add
("closed"));
203
QnContent = new XmlQualifiedName(nameTable.
Add
("content"));
204
QnMixed = new XmlQualifiedName(nameTable.
Add
("mixed"));
205
QnEmpty = new XmlQualifiedName(nameTable.
Add
("empty"));
206
QnEltOnly = new XmlQualifiedName(nameTable.
Add
("eltOnly"));
207
QnTextOnly = new XmlQualifiedName(nameTable.
Add
("textOnly"));
208
QnOrder = new XmlQualifiedName(nameTable.
Add
("order"));
209
QnSeq = new XmlQualifiedName(nameTable.
Add
("seq"));
210
QnOne = new XmlQualifiedName(nameTable.
Add
("one"));
211
QnMany = new XmlQualifiedName(nameTable.
Add
("many"));
212
QnRequired = new XmlQualifiedName(nameTable.
Add
("required"));
213
QnYes = new XmlQualifiedName(nameTable.
Add
("yes"));
214
QnNo = new XmlQualifiedName(nameTable.
Add
("no"));
215
QnString = new XmlQualifiedName(nameTable.
Add
("string"));
216
QnID = new XmlQualifiedName(nameTable.
Add
("id"));
217
QnIDRef = new XmlQualifiedName(nameTable.
Add
("idref"));
218
QnIDRefs = new XmlQualifiedName(nameTable.
Add
("idrefs"));
219
QnEntity = new XmlQualifiedName(nameTable.
Add
("entity"));
220
QnEntities = new XmlQualifiedName(nameTable.
Add
("entities"));
221
QnNmToken = new XmlQualifiedName(nameTable.
Add
("nmtoken"));
222
QnNmTokens = new XmlQualifiedName(nameTable.
Add
("nmtokens"));
223
QnEnumeration = new XmlQualifiedName(nameTable.
Add
("enumeration"));
224
QnDefault = new XmlQualifiedName(nameTable.
Add
("default"));
227
QnTargetNamespace = new XmlQualifiedName(nameTable.
Add
("targetNamespace"));
228
QnVersion = new XmlQualifiedName(nameTable.
Add
("version"));
229
QnFinalDefault = new XmlQualifiedName(nameTable.
Add
("finalDefault"));
230
QnBlockDefault = new XmlQualifiedName(nameTable.
Add
("blockDefault"));
231
QnFixed = new XmlQualifiedName(nameTable.
Add
("fixed"));
232
QnAbstract = new XmlQualifiedName(nameTable.
Add
("abstract"));
233
QnBlock = new XmlQualifiedName(nameTable.
Add
("block"));
234
QnSubstitutionGroup = new XmlQualifiedName(nameTable.
Add
("substitutionGroup"));
235
QnFinal = new XmlQualifiedName(nameTable.
Add
("final"));
236
QnNillable = new XmlQualifiedName(nameTable.
Add
("nillable"));
237
QnRef = new XmlQualifiedName(nameTable.
Add
("ref"));
238
QnBase = new XmlQualifiedName(nameTable.
Add
("base"));
239
QnDerivedBy = new XmlQualifiedName(nameTable.
Add
("derivedBy"));
240
QnNamespace = new XmlQualifiedName(nameTable.
Add
("namespace"));
241
QnProcessContents = new XmlQualifiedName(nameTable.
Add
("processContents"));
242
QnRefer = new XmlQualifiedName(nameTable.
Add
("refer"));
243
QnPublic = new XmlQualifiedName(nameTable.
Add
("public"));
244
QnSystem = new XmlQualifiedName(nameTable.
Add
("system"));
245
QnSchemaLocation = new XmlQualifiedName(nameTable.
Add
("schemaLocation"));
246
QnValue = new XmlQualifiedName(nameTable.
Add
("value"));
247
QnUse = new XmlQualifiedName(nameTable.
Add
("use"));
248
QnForm = new XmlQualifiedName(nameTable.
Add
("form"));
249
QnAttributeFormDefault = new XmlQualifiedName(nameTable.
Add
("attributeFormDefault"));
250
QnElementFormDefault = new XmlQualifiedName(nameTable.
Add
("elementFormDefault"));
251
QnSource = new XmlQualifiedName(nameTable.
Add
("source"));
252
QnMemberTypes = new XmlQualifiedName(nameTable.
Add
("memberTypes"));
253
QnItemType = new XmlQualifiedName(nameTable.
Add
("itemType"));
254
QnXPath = new XmlQualifiedName(nameTable.
Add
("xpath"));
258
QnXdrElementType = new XmlQualifiedName(nameTable.
Add
("ElementType"), NsXdr);
259
QnXdrElement = new XmlQualifiedName(nameTable.
Add
("element"), NsXdr);
260
QnXdrGroup = new XmlQualifiedName(nameTable.
Add
("group"), NsXdr);
261
QnXdrAttributeType = new XmlQualifiedName(nameTable.
Add
("AttributeType"), NsXdr);
262
QnXdrAttribute = new XmlQualifiedName(nameTable.
Add
("attribute"), NsXdr);
263
QnXdrDataType = new XmlQualifiedName(nameTable.
Add
("datatype"), NsXdr);
264
QnXdrDescription = new XmlQualifiedName(nameTable.
Add
("description"), NsXdr);
265
QnXdrExtends = new XmlQualifiedName(nameTable.
Add
("extends"), NsXdr);
268
QnXdrAliasSchema = new XmlQualifiedName(nameTable.
Add
("Schema"), NsDataTypeAlias);
271
QnDtType = new XmlQualifiedName(nameTable.
Add
("type"), NsDataType);
272
QnDtValues = new XmlQualifiedName(nameTable.
Add
("values"), NsDataType);
273
QnDtMaxLength = new XmlQualifiedName(nameTable.
Add
("maxLength"), NsDataType);
274
QnDtMinLength = new XmlQualifiedName(nameTable.
Add
("minLength"), NsDataType);
275
QnDtMax = new XmlQualifiedName(nameTable.
Add
("max"), NsDataType);
276
QnDtMin = new XmlQualifiedName(nameTable.
Add
("min"), NsDataType);
277
QnDtMinExclusive = new XmlQualifiedName(nameTable.
Add
("minExclusive"), NsDataType);
278
QnDtMaxExclusive = new XmlQualifiedName(nameTable.
Add
("maxExclusive"), NsDataType);
282
QnXsdAnnotation = new XmlQualifiedName(nameTable.
Add
("annotation"), NsXs);
283
QnXsdInclude = new XmlQualifiedName(nameTable.
Add
("include"), NsXs);
284
QnXsdImport = new XmlQualifiedName(nameTable.
Add
("import"), NsXs);
285
QnXsdElement = new XmlQualifiedName(nameTable.
Add
("element"), NsXs);
286
QnXsdAttribute = new XmlQualifiedName(nameTable.
Add
("attribute"), NsXs);
287
QnXsdAttributeGroup = new XmlQualifiedName(nameTable.
Add
("attributeGroup"), NsXs);
288
QnXsdAnyAttribute = new XmlQualifiedName(nameTable.
Add
("anyAttribute"), NsXs);
289
QnXsdGroup = new XmlQualifiedName(nameTable.
Add
("group"), NsXs);
290
QnXsdAll = new XmlQualifiedName(nameTable.
Add
("all"), NsXs);
291
QnXsdChoice = new XmlQualifiedName(nameTable.
Add
("choice"), NsXs);
292
QnXsdSequence = new XmlQualifiedName(nameTable.
Add
("sequence"), NsXs);
293
QnXsdAny = new XmlQualifiedName(nameTable.
Add
("any"), NsXs);
294
QnXsdNotation = new XmlQualifiedName(nameTable.
Add
("notation"), NsXs);
295
QnXsdSimpleType = new XmlQualifiedName(nameTable.
Add
("simpleType"), NsXs);
296
QnXsdComplexType = new XmlQualifiedName(nameTable.
Add
("complexType"), NsXs);
297
QnXsdUnique = new XmlQualifiedName(nameTable.
Add
("unique"), NsXs);
298
QnXsdKey = new XmlQualifiedName(nameTable.
Add
("key"), NsXs);
299
QnXsdKeyRef = new XmlQualifiedName(nameTable.
Add
("keyref"), NsXs);
300
QnXsdSelector = new XmlQualifiedName(nameTable.
Add
("selector"), NsXs);
301
QnXsdField = new XmlQualifiedName(nameTable.
Add
("field"), NsXs);
302
QnXsdMinExclusive = new XmlQualifiedName(nameTable.
Add
("minExclusive"), NsXs);
303
QnXsdMinInclusive = new XmlQualifiedName(nameTable.
Add
("minInclusive"), NsXs);
304
QnXsdMaxInclusive = new XmlQualifiedName(nameTable.
Add
("maxInclusive"), NsXs);
305
QnXsdMaxExclusive = new XmlQualifiedName(nameTable.
Add
("maxExclusive"), NsXs);
306
QnXsdTotalDigits = new XmlQualifiedName(nameTable.
Add
("totalDigits"), NsXs);
307
QnXsdFractionDigits = new XmlQualifiedName(nameTable.
Add
("fractionDigits"), NsXs);
308
QnXsdLength = new XmlQualifiedName(nameTable.
Add
("length"), NsXs);
309
QnXsdMinLength = new XmlQualifiedName(nameTable.
Add
("minLength"), NsXs);
310
QnXsdMaxLength = new XmlQualifiedName(nameTable.
Add
("maxLength"), NsXs);
311
QnXsdEnumeration = new XmlQualifiedName(nameTable.
Add
("enumeration"), NsXs);
312
QnXsdPattern = new XmlQualifiedName(nameTable.
Add
("pattern"), NsXs);
313
QnXsdDocumentation = new XmlQualifiedName(nameTable.
Add
("documentation"), NsXs);
314
QnXsdAppinfo = new XmlQualifiedName(nameTable.
Add
("appinfo"), NsXs);
315
QnXsdComplexContent = new XmlQualifiedName(nameTable.
Add
("complexContent"), NsXs);
316
QnXsdSimpleContent = new XmlQualifiedName(nameTable.
Add
("simpleContent"), NsXs);
317
QnXsdRestriction = new XmlQualifiedName(nameTable.
Add
("restriction"), NsXs);
318
QnXsdExtension = new XmlQualifiedName(nameTable.
Add
("extension"), NsXs);
319
QnXsdUnion = new XmlQualifiedName(nameTable.
Add
("union"), NsXs);
320
QnXsdList = new XmlQualifiedName(nameTable.
Add
("list"), NsXs);
321
QnXsdWhiteSpace = new XmlQualifiedName(nameTable.
Add
("whiteSpace"), NsXs);
322
QnXsdRedefine = new XmlQualifiedName(nameTable.
Add
("redefine"), NsXs);
323
QnXsdAnyType = new XmlQualifiedName(nameTable.
Add
("anyType"), NsXs);
FrameworkFork\Microsoft.Xml\Xml\schema\XdrBuilder.cs (2)
520
uri = _NameTable.
Add
(uri);
664
builder._TargetNamespace = builder._NameTable.
Add
("x-schema:#" + builder._XdrName);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaCollection.cs (1)
366
ns = NameTable.
Add
(ns); //Added without checking for ns == null, since XDR cannot have null namespace
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaDatatype.cs (1)
358
canonicalUri = nameTable.
Add
(uri.Substring(0, offset) + uri.Substring(offset, uri.Length - offset).ToUpperInvariant());
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaValidator.cs (14)
225
_nsXs = _nameTable.
Add
(XmlReservedNs.NsXs);
226
_nsXsi = _nameTable.
Add
(XmlReservedNs.NsXsi);
227
_nsXmlNs = _nameTable.
Add
(XmlReservedNs.NsXmlNs);
228
_nsXml = _nameTable.
Add
(XmlReservedNs.NsXml);
229
_xsiTypeString = _nameTable.
Add
("type");
230
_xsiNilString = _nameTable.
Add
("nil");
231
_xsiSchemaLocationString = _nameTable.
Add
("schemaLocation");
232
_xsiNoNamespaceSchemaLocationString = _nameTable.
Add
("noNamespaceSchemaLocation");
546
ns = _nameTable.
Add
(ns);
703
lName = _nameTable.
Add
(lName);
1067
string attributeNS = _nameTable.
Add
(attdef.Name.Namespace);
1082
attrData.LocalName = _nameTable.
Add
(attdef.Name.Name);
1084
attrData.Prefix = _nameTable.
Add
(defaultPrefix);
2172
defaultNS = _nameTable.
Add
(pair.Value);
FrameworkFork\Microsoft.Xml\Xml\schema\xsdvalidator.cs (8)
77
_nsXmlNs = NameTable.
Add
(XmlReservedNs.NsXmlNs);
78
_nsXs = NameTable.
Add
(XmlReservedNs.NsXs);
79
_nsXsi = NameTable.
Add
(XmlReservedNs.NsXsi);
80
_xsiType = NameTable.
Add
("type");
81
_xsiNil = NameTable.
Add
("nil");
82
_xsiSchemaLocation = NameTable.
Add
("schemaLocation");
83
_xsiNoNamespaceSchemaLocation = NameTable.
Add
("noNamespaceSchemaLocation");
84
_xsdSchema = NameTable.
Add
("schema");
FrameworkFork\Microsoft.Xml\Xml\Serialization\PrimitiveXmlSerializers.cs (19)
692
_id4_boolean = Reader.NameTable.
Add
(@"boolean");
693
_id14_unsignedInt = Reader.NameTable.
Add
(@"unsignedInt");
694
_id15_unsignedLong = Reader.NameTable.
Add
(@"unsignedLong");
695
_id7_float = Reader.NameTable.
Add
(@"float");
696
_id10_dateTime = Reader.NameTable.
Add
(@"dateTime");
697
_id6_long = Reader.NameTable.
Add
(@"long");
698
_id9_decimal = Reader.NameTable.
Add
(@"decimal");
699
_id8_double = Reader.NameTable.
Add
(@"double");
700
_id17_guid = Reader.NameTable.
Add
(@"guid");
701
_id2_Item = Reader.NameTable.
Add
(@"");
702
_id13_unsignedShort = Reader.NameTable.
Add
(@"unsignedShort");
703
_id18_char = Reader.NameTable.
Add
(@"char");
704
_id3_int = Reader.NameTable.
Add
(@"int");
705
_id12_byte = Reader.NameTable.
Add
(@"byte");
706
_id16_base64Binary = Reader.NameTable.
Add
(@"base64Binary");
707
_id11_unsignedByte = Reader.NameTable.
Add
(@"unsignedByte");
708
_id5_short = Reader.NameTable.
Add
(@"short");
709
_id1_string = Reader.NameTable.
Add
(@"string");
710
_id1_QName = Reader.NameTable.
Add
(@"QName");
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (80)
139
_schemaNsID = r.NameTable.
Add
(XmlSchema.Namespace);
140
_schemaNs2000ID = r.NameTable.
Add
("http://www.w3.org/2000/10/XMLSchema");
141
_schemaNs1999ID = r.NameTable.
Add
("http://www.w3.org/1999/XMLSchema");
142
_schemaNonXsdTypesNsID = r.NameTable.
Add
(UrtTypes.Namespace);
143
_instanceNsID = r.NameTable.
Add
(XmlSchema.InstanceNamespace);
144
_instanceNs2000ID = r.NameTable.
Add
("http://www.w3.org/2000/10/XMLSchema-instance");
145
_instanceNs1999ID = r.NameTable.
Add
("http://www.w3.org/1999/XMLSchema-instance");
146
_soapNsID = r.NameTable.
Add
(Soap.Encoding);
147
_soap12NsID = r.NameTable.
Add
(Soap12.Encoding);
148
_schemaID = r.NameTable.
Add
("schema");
149
_wsdlNsID = r.NameTable.
Add
(Wsdl.Namespace);
150
_wsdlArrayTypeID = r.NameTable.
Add
(Wsdl.ArrayType);
151
_nullID = r.NameTable.
Add
("null");
152
_nilID = r.NameTable.
Add
("nil");
153
_typeID = r.NameTable.
Add
("type");
154
_arrayTypeID = r.NameTable.
Add
("arrayType");
155
_itemTypeID = r.NameTable.
Add
("itemType");
156
_arraySizeID = r.NameTable.
Add
("arraySize");
157
_arrayID = r.NameTable.
Add
("Array");
158
_urTypeID = r.NameTable.
Add
(Soap.UrType);
217
object ns = _r.NameTable.
Add
(XmlSchema.Namespace);
218
object ns2 = _r.NameTable.
Add
(UrtTypes.Namespace);
220
_stringID = _r.NameTable.
Add
("string");
221
_intID = _r.NameTable.
Add
("int");
222
_booleanID = _r.NameTable.
Add
("boolean");
223
_shortID = _r.NameTable.
Add
("short");
224
_longID = _r.NameTable.
Add
("long");
225
_floatID = _r.NameTable.
Add
("float");
226
_doubleID = _r.NameTable.
Add
("double");
227
_decimalID = _r.NameTable.
Add
("decimal");
228
_dateTimeID = _r.NameTable.
Add
("dateTime");
229
_qnameID = _r.NameTable.
Add
("QName");
230
_dateID = _r.NameTable.
Add
("date");
231
_timeID = _r.NameTable.
Add
("time");
232
_hexBinaryID = _r.NameTable.
Add
("hexBinary");
233
_base64BinaryID = _r.NameTable.
Add
("base64Binary");
234
_unsignedByteID = _r.NameTable.
Add
("unsignedByte");
235
_byteID = _r.NameTable.
Add
("byte");
236
_unsignedShortID = _r.NameTable.
Add
("unsignedShort");
237
_unsignedIntID = _r.NameTable.
Add
("unsignedInt");
238
_unsignedLongID = _r.NameTable.
Add
("unsignedLong");
239
_oldDecimalID = _r.NameTable.
Add
("decimal");
240
_oldTimeInstantID = _r.NameTable.
Add
("timeInstant");
241
_charID = _r.NameTable.
Add
("char");
242
_guidID = _r.NameTable.
Add
("guid");
243
_base64ID = _r.NameTable.
Add
("base64");
245
_anyURIID = _r.NameTable.
Add
("anyURI");
246
_durationID = _r.NameTable.
Add
("duration");
247
_ENTITYID = _r.NameTable.
Add
("ENTITY");
248
_ENTITIESID = _r.NameTable.
Add
("ENTITIES");
249
_gDayID = _r.NameTable.
Add
("gDay");
250
_gMonthID = _r.NameTable.
Add
("gMonth");
251
_gMonthDayID = _r.NameTable.
Add
("gMonthDay");
252
_gYearID = _r.NameTable.
Add
("gYear");
253
_gYearMonthID = _r.NameTable.
Add
("gYearMonth");
254
_IDID = _r.NameTable.
Add
("ID");
255
_IDREFID = _r.NameTable.
Add
("IDREF");
256
_IDREFSID = _r.NameTable.
Add
("IDREFS");
257
_integerID = _r.NameTable.
Add
("integer");
258
_languageID = _r.NameTable.
Add
("language");
259
_nameID = _r.NameTable.
Add
("Name");
260
_NCNameID = _r.NameTable.
Add
("NCName");
261
_NMTOKENID = _r.NameTable.
Add
("NMTOKEN");
262
_NMTOKENSID = _r.NameTable.
Add
("NMTOKENS");
263
_negativeIntegerID = _r.NameTable.
Add
("negativeInteger");
264
_nonNegativeIntegerID = _r.NameTable.
Add
("nonNegativeInteger");
265
_nonPositiveIntegerID = _r.NameTable.
Add
("nonPositiveInteger");
266
_normalizedStringID = _r.NameTable.
Add
("normalizedString");
267
_NOTATIONID = _r.NameTable.
Add
("NOTATION");
268
_positiveIntegerID = _r.NameTable.
Add
("positiveInteger");
269
_tokenID = _r.NameTable.
Add
("token");
1212
return new XmlQualifiedName(_r.NameTable.
Add
(value), _r.LookupNamespace(String.Empty));
1222
return new XmlQualifiedName(_r.NameTable.
Add
(localName), ns);
1914
XmlQualifiedName urType = new XmlQualifiedName(_urTypeID, _r.NameTable.
Add
(XmlSchema.Namespace));
1935
typeId = new XmlQualifiedName(_r.NameTable.
Add
(_r.LocalName), _r.NameTable.
Add
(_r.NamespaceURI));
1937
typeId = new XmlQualifiedName(_r.NameTable.
Add
(name), _r.NameTable.
Add
(ns));
1956
XmlQualifiedName typeName = new XmlQualifiedName(_r.NameTable.
Add
(name), _r.NameTable.
Add
(ns));
FrameworkFork\Microsoft.Xml\Xml\XmlNamespaceManager.cs (7)
76
_xml = nameTable.
Add
("xml");
77
_xmlNs = nameTable.
Add
("xmlns");
80
string emptyStr = nameTable.
Add
(string.Empty);
82
_nsdecls[1].Set(_xmlNs, nameTable.
Add
(XmlReservedNs.NsXmlNs), -1, -1);
83
_nsdecls[2].Set(_xml, nameTable.
Add
(XmlReservedNs.NsXml), 0, -1);
139
prefix = _nameTable.
Add
(prefix);
140
uri = _nameTable.
Add
(uri);
FrameworkFork\Microsoft.Xml\Xml\XmlQualifiedName.cs (2)
199
_name = nameTable.
Add
(_name);
200
_ns = nameTable.
Add
(_ns);
FrameworkFork\Microsoft.Xml\Xml\XPath\XPathNavigatorReader.cs (3)
209
return this.NameTable.
Add
(XmlReservedNs.NsXmlNs);
223
return this.NameTable.
Add
("xmlns");
237
return this.NameTable.
Add
("xmlns");
FrameworkFork\System.Runtime.Serialization\System\Xml\StringHandle.cs (2)
114
return nameTable.
Add
(_bufferReader.GetDictionaryString(_key).Value);
117
return nameTable.
Add
(s_constStrings[_key]);
FrameworkFork\System.Runtime.Serialization\System\Xml\XmlBaseReader.cs (5)
928
_nameTable.
Add
(xml);
929
_nameTable.
Add
(xmlns);
930
_nameTable.
Add
(xmlnsNamespace);
931
_nameTable.
Add
(xmlNamespace);
934
_nameTable.
Add
(PrefixHandle.GetString(i));
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSet.cs (140)
819
_id60_documentation = Reader.NameTable.
Add
(@"documentation");
820
_id22_targetNamespace = Reader.NameTable.
Add
(@"targetNamespace");
821
_id10_definitions = Reader.NameTable.
Add
(@"definitions");
822
_id65_lang = Reader.NameTable.
Add
(@"lang");
823
_id31_attribute = Reader.NameTable.
Add
(@"attribute");
824
_id47_ref = Reader.NameTable.
Add
(@"ref");
825
_id4_MetadataSection = Reader.NameTable.
Add
(@"MetadataSection");
826
_id54_refer = Reader.NameTable.
Add
(@"refer");
827
_id83_union = Reader.NameTable.
Add
(@"union");
828
_id127_Item = Reader.NameTable.
Add
(@"XmlSchemaComplexContentRestriction");
829
_id53_XmlSchemaKeyref = Reader.NameTable.
Add
(@"XmlSchemaKeyref");
830
_id27_import = Reader.NameTable.
Add
(@"import");
831
_id75_all = Reader.NameTable.
Add
(@"all");
832
_id128_XmlSchemaSimpleContent = Reader.NameTable.
Add
(@"XmlSchemaSimpleContent");
833
_id139_XmlSchemaInclude = Reader.NameTable.
Add
(@"XmlSchemaInclude");
834
_id78_namespace = Reader.NameTable.
Add
(@"namespace");
835
_id18_attributeFormDefault = Reader.NameTable.
Add
(@"attributeFormDefault");
836
_id100_XmlSchemaFractionDigitsFacet = Reader.NameTable.
Add
(@"XmlSchemaFractionDigitsFacet");
837
_id32_attributeGroup = Reader.NameTable.
Add
(@"attributeGroup");
838
_id64_XmlSchemaDocumentation = Reader.NameTable.
Add
(@"XmlSchemaDocumentation");
839
_id93_maxLength = Reader.NameTable.
Add
(@"maxLength");
840
_id49_type = Reader.NameTable.
Add
(@"type");
841
_id86_XmlSchemaSimpleTypeRestriction = Reader.NameTable.
Add
(@"XmlSchemaSimpleTypeRestriction");
842
_id96_length = Reader.NameTable.
Add
(@"length");
843
_id104_XmlSchemaLengthFacet = Reader.NameTable.
Add
(@"XmlSchemaLengthFacet");
844
_id17_XmlSchema = Reader.NameTable.
Add
(@"XmlSchema");
845
_id134_public = Reader.NameTable.
Add
(@"public");
846
_id77_XmlSchemaAnyAttribute = Reader.NameTable.
Add
(@"XmlSchemaAnyAttribute");
847
_id24_id = Reader.NameTable.
Add
(@"id");
848
_id71_simpleContent = Reader.NameTable.
Add
(@"simpleContent");
849
_id51_key = Reader.NameTable.
Add
(@"key");
850
_id67_XmlSchemaKey = Reader.NameTable.
Add
(@"XmlSchemaKey");
851
_id80_XmlSchemaAttribute = Reader.NameTable.
Add
(@"XmlSchemaAttribute");
852
_id126_Item = Reader.NameTable.
Add
(@"XmlSchemaComplexContentExtension");
853
_id23_version = Reader.NameTable.
Add
(@"version");
854
_id121_XmlSchemaGroupRef = Reader.NameTable.
Add
(@"XmlSchemaGroupRef");
855
_id90_maxInclusive = Reader.NameTable.
Add
(@"maxInclusive");
856
_id116_memberTypes = Reader.NameTable.
Add
(@"memberTypes");
857
_id20_finalDefault = Reader.NameTable.
Add
(@"finalDefault");
858
_id120_any = Reader.NameTable.
Add
(@"any");
859
_id112_XmlSchemaMaxExclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMaxExclusiveFacet");
860
_id15_EndpointReference = Reader.NameTable.
Add
(@"EndpointReference");
861
_id45_name = Reader.NameTable.
Add
(@"name");
862
_id122_XmlSchemaSequence = Reader.NameTable.
Add
(@"XmlSchemaSequence");
863
_id73_sequence = Reader.NameTable.
Add
(@"sequence");
864
_id82_XmlSchemaSimpleType = Reader.NameTable.
Add
(@"XmlSchemaSimpleType");
865
_id48_substitutionGroup = Reader.NameTable.
Add
(@"substitutionGroup");
866
_id111_XmlSchemaMinInclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMinInclusiveFacet");
867
_id7_Identifier = Reader.NameTable.
Add
(@"Identifier");
868
_id113_XmlSchemaSimpleTypeList = Reader.NameTable.
Add
(@"XmlSchemaSimpleTypeList");
869
_id41_default = Reader.NameTable.
Add
(@"default");
870
_id125_extension = Reader.NameTable.
Add
(@"extension");
871
_id16_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/ws/2004/08/addressing");
872
_id1000_Item = Reader.NameTable.
Add
(@"http://www.w3.org/2005/08/addressing");
873
_id124_XmlSchemaComplexContent = Reader.NameTable.
Add
(@"XmlSchemaComplexContent");
874
_id72_complexContent = Reader.NameTable.
Add
(@"complexContent");
875
_id11_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/wsdl/");
876
_id25_include = Reader.NameTable.
Add
(@"include");
877
_id34_simpleType = Reader.NameTable.
Add
(@"simpleType");
878
_id91_minExclusive = Reader.NameTable.
Add
(@"minExclusive");
879
_id94_pattern = Reader.NameTable.
Add
(@"pattern");
880
_id2_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/ws/2004/09/mex");
881
_id95_enumeration = Reader.NameTable.
Add
(@"enumeration");
882
_id114_itemType = Reader.NameTable.
Add
(@"itemType");
883
_id115_XmlSchemaSimpleTypeUnion = Reader.NameTable.
Add
(@"XmlSchemaSimpleTypeUnion");
884
_id59_XmlSchemaAnnotation = Reader.NameTable.
Add
(@"XmlSchemaAnnotation");
885
_id28_notation = Reader.NameTable.
Add
(@"notation");
886
_id84_list = Reader.NameTable.
Add
(@"list");
887
_id39_abstract = Reader.NameTable.
Add
(@"abstract");
888
_id103_XmlSchemaWhiteSpaceFacet = Reader.NameTable.
Add
(@"XmlSchemaWhiteSpaceFacet");
889
_id110_XmlSchemaMaxInclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMaxInclusiveFacet");
890
_id55_selector = Reader.NameTable.
Add
(@"selector");
891
_id43_fixed = Reader.NameTable.
Add
(@"fixed");
892
_id57_XmlSchemaXPath = Reader.NameTable.
Add
(@"XmlSchemaXPath");
893
_id118_XmlSchemaAll = Reader.NameTable.
Add
(@"XmlSchemaAll");
894
_id56_field = Reader.NameTable.
Add
(@"field");
895
_id119_XmlSchemaChoice = Reader.NameTable.
Add
(@"XmlSchemaChoice");
896
_id123_XmlSchemaAny = Reader.NameTable.
Add
(@"XmlSchemaAny");
897
_id132_XmlSchemaGroup = Reader.NameTable.
Add
(@"XmlSchemaGroup");
898
_id35_element = Reader.NameTable.
Add
(@"element");
899
_id129_Item = Reader.NameTable.
Add
(@"XmlSchemaSimpleContentExtension");
900
_id30_annotation = Reader.NameTable.
Add
(@"annotation");
901
_id44_form = Reader.NameTable.
Add
(@"form");
902
_id21_elementFormDefault = Reader.NameTable.
Add
(@"elementFormDefault");
903
_id98_totalDigits = Reader.NameTable.
Add
(@"totalDigits");
904
_id88_maxExclusive = Reader.NameTable.
Add
(@"maxExclusive");
905
_id42_final = Reader.NameTable.
Add
(@"final");
906
_id46_nillable = Reader.NameTable.
Add
(@"nillable");
907
_id9_Item = Reader.NameTable.
Add
(@"http://www.w3.org/2001/XMLSchema");
908
_id61_appinfo = Reader.NameTable.
Add
(@"appinfo");
909
_id38_maxOccurs = Reader.NameTable.
Add
(@"maxOccurs");
910
_id70_mixed = Reader.NameTable.
Add
(@"mixed");
911
_id87_base = Reader.NameTable.
Add
(@"base");
912
_id13_Location = Reader.NameTable.
Add
(@"Location");
913
_id12_MetadataReference = Reader.NameTable.
Add
(@"MetadataReference");
914
_id97_whiteSpace = Reader.NameTable.
Add
(@"whiteSpace");
915
_id29_group = Reader.NameTable.
Add
(@"group");
916
_id92_minLength = Reader.NameTable.
Add
(@"minLength");
917
_id99_fractionDigits = Reader.NameTable.
Add
(@"fractionDigits");
918
_id137_schemaLocation = Reader.NameTable.
Add
(@"schemaLocation");
919
_id26_redefine = Reader.NameTable.
Add
(@"redefine");
920
_id101_value = Reader.NameTable.
Add
(@"value");
921
_id63_source = Reader.NameTable.
Add
(@"source");
922
_id89_minInclusive = Reader.NameTable.
Add
(@"minInclusive");
923
_id133_XmlSchemaNotation = Reader.NameTable.
Add
(@"XmlSchemaNotation");
924
_id52_keyref = Reader.NameTable.
Add
(@"keyref");
925
_id33_complexType = Reader.NameTable.
Add
(@"complexType");
926
_id135_system = Reader.NameTable.
Add
(@"system");
927
_id50_unique = Reader.NameTable.
Add
(@"unique");
928
_id74_choice = Reader.NameTable.
Add
(@"choice");
929
_id66_Item = Reader.NameTable.
Add
(@"http://www.w3.org/XML/1998/namespace");
930
_id105_XmlSchemaEnumerationFacet = Reader.NameTable.
Add
(@"XmlSchemaEnumerationFacet");
931
_id107_XmlSchemaMaxLengthFacet = Reader.NameTable.
Add
(@"XmlSchemaMaxLengthFacet");
932
_id36_XmlSchemaElement = Reader.NameTable.
Add
(@"XmlSchemaElement");
933
_id106_XmlSchemaPatternFacet = Reader.NameTable.
Add
(@"XmlSchemaPatternFacet");
934
_id37_minOccurs = Reader.NameTable.
Add
(@"minOccurs");
935
_id130_Item = Reader.NameTable.
Add
(@"XmlSchemaSimpleContentRestriction");
936
_id68_XmlSchemaUnique = Reader.NameTable.
Add
(@"XmlSchemaUnique");
937
_id131_XmlSchemaAttributeGroup = Reader.NameTable.
Add
(@"XmlSchemaAttributeGroup");
938
_id40_block = Reader.NameTable.
Add
(@"block");
939
_id81_use = Reader.NameTable.
Add
(@"use");
940
_id85_restriction = Reader.NameTable.
Add
(@"restriction");
941
_id1_Metadata = Reader.NameTable.
Add
(@"Metadata");
942
_id69_XmlSchemaComplexType = Reader.NameTable.
Add
(@"XmlSchemaComplexType");
943
_id117_XmlSchemaAttributeGroupRef = Reader.NameTable.
Add
(@"XmlSchemaAttributeGroupRef");
944
_id138_XmlSchemaRedefine = Reader.NameTable.
Add
(@"XmlSchemaRedefine");
945
_id6_Item = Reader.NameTable.
Add
(@"");
946
_id102_XmlSchemaTotalDigitsFacet = Reader.NameTable.
Add
(@"XmlSchemaTotalDigitsFacet");
947
_id58_xpath = Reader.NameTable.
Add
(@"xpath");
948
_id5_Dialect = Reader.NameTable.
Add
(@"Dialect");
949
_id14_MetadataLocation = Reader.NameTable.
Add
(@"MetadataLocation");
950
_id3_MetadataSet = Reader.NameTable.
Add
(@"MetadataSet");
951
_id79_processContents = Reader.NameTable.
Add
(@"processContents");
952
_id76_anyAttribute = Reader.NameTable.
Add
(@"anyAttribute");
953
_id19_blockDefault = Reader.NameTable.
Add
(@"blockDefault");
954
_id136_XmlSchemaImport = Reader.NameTable.
Add
(@"XmlSchemaImport");
955
_id109_XmlSchemaMinExclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMinExclusiveFacet");
956
_id108_XmlSchemaMinLengthFacet = Reader.NameTable.
Add
(@"XmlSchemaMinLengthFacet");
957
_id8_schema = Reader.NameTable.
Add
(@"schema");
958
_id62_XmlSchemaAppInfo = Reader.NameTable.
Add
(@"XmlSchemaAppInfo");
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (209)
13344
_id133_XmlSchemaSimpleTypeUnion = Reader.NameTable.
Add
(@"XmlSchemaSimpleTypeUnion");
13345
_id143_maxInclusive = Reader.NameTable.
Add
(@"maxInclusive");
13346
_id46_body = Reader.NameTable.
Add
(@"body");
13347
_id190_any = Reader.NameTable.
Add
(@"any");
13348
_id88_OperationOutput = Reader.NameTable.
Add
(@"OperationOutput");
13349
_id6_targetNamespace = Reader.NameTable.
Add
(@"targetNamespace");
13350
_id158_XmlSchemaMaxLengthFacet = Reader.NameTable.
Add
(@"XmlSchemaMaxLengthFacet");
13351
_id11_portType = Reader.NameTable.
Add
(@"portType");
13352
_id182_mixed = Reader.NameTable.
Add
(@"mixed");
13353
_id172_keyref = Reader.NameTable.
Add
(@"keyref");
13354
_id187_all = Reader.NameTable.
Add
(@"all");
13355
_id162_itemType = Reader.NameTable.
Add
(@"itemType");
13356
_id68_InputBinding = Reader.NameTable.
Add
(@"InputBinding");
13357
_id25_HttpAddressBinding = Reader.NameTable.
Add
(@"HttpAddressBinding");
13358
_id82_HttpBinding = Reader.NameTable.
Add
(@"HttpBinding");
13359
_id17_address = Reader.NameTable.
Add
(@"address");
13360
_id3_ServiceDescription = Reader.NameTable.
Add
(@"ServiceDescription");
13361
_id38_SoapFaultBinding = Reader.NameTable.
Add
(@"SoapFaultBinding");
13362
_id123_ref = Reader.NameTable.
Add
(@"ref");
13363
_id198_XmlSchemaComplexContent = Reader.NameTable.
Add
(@"XmlSchemaComplexContent");
13364
_id53_parts = Reader.NameTable.
Add
(@"parts");
13365
_id35_use = Reader.NameTable.
Add
(@"use");
13366
_id157_XmlSchemaLengthFacet = Reader.NameTable.
Add
(@"XmlSchemaLengthFacet");
13367
_id207_XmlSchemaImport = Reader.NameTable.
Add
(@"XmlSchemaImport");
13368
_id44_text = Reader.NameTable.
Add
(@"text");
13369
_id117_XmlSchemaAppInfo = Reader.NameTable.
Add
(@"XmlSchemaAppInfo");
13370
_id203_public = Reader.NameTable.
Add
(@"public");
13371
_id69_urlEncoded = Reader.NameTable.
Add
(@"urlEncoded");
13372
_id7_documentation = Reader.NameTable.
Add
(@"documentation");
13373
_id19_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/wsdl/soap/");
13374
_id129_final = Reader.NameTable.
Add
(@"final");
13375
_id163_XmlSchemaElement = Reader.NameTable.
Add
(@"XmlSchemaElement");
13376
_id60_capture = Reader.NameTable.
Add
(@"capture");
13377
_id37_encodingStyle = Reader.NameTable.
Add
(@"encodingStyle");
13378
_id185_sequence = Reader.NameTable.
Add
(@"sequence");
13379
_id166_abstract = Reader.NameTable.
Add
(@"abstract");
13380
_id23_location = Reader.NameTable.
Add
(@"location");
13381
_id111_XmlSchemaAttributeGroup = Reader.NameTable.
Add
(@"XmlSchemaAttributeGroup");
13382
_id192_XmlSchemaSequence = Reader.NameTable.
Add
(@"XmlSchemaSequence");
13383
_id33_FaultBinding = Reader.NameTable.
Add
(@"FaultBinding");
13384
_id153_XmlSchemaMaxInclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMaxInclusiveFacet");
13385
_id201_XmlSchemaGroup = Reader.NameTable.
Add
(@"XmlSchemaGroup");
13386
_id43_multipartRelated = Reader.NameTable.
Add
(@"multipartRelated");
13387
_id168_nillable = Reader.NameTable.
Add
(@"nillable");
13388
_id149_value = Reader.NameTable.
Add
(@"value");
13389
_id64_MimeMultipartRelatedBinding = Reader.NameTable.
Add
(@"MimeMultipartRelatedBinding");
13390
_id193_XmlSchemaAny = Reader.NameTable.
Add
(@"XmlSchemaAny");
13391
_id191_XmlSchemaGroupRef = Reader.NameTable.
Add
(@"XmlSchemaGroupRef");
13392
_id74_soapAction = Reader.NameTable.
Add
(@"soapAction");
13393
_id63_ignoreCase = Reader.NameTable.
Add
(@"ignoreCase");
13394
_id101_version = Reader.NameTable.
Add
(@"version");
13395
_id47_header = Reader.NameTable.
Add
(@"header");
13396
_id195_extension = Reader.NameTable.
Add
(@"extension");
13397
_id48_Soap12HeaderBinding = Reader.NameTable.
Add
(@"Soap12HeaderBinding");
13398
_id134_memberTypes = Reader.NameTable.
Add
(@"memberTypes");
13399
_id121_Item = Reader.NameTable.
Add
(@"http://www.w3.org/XML/1998/namespace");
13400
_id146_minExclusive = Reader.NameTable.
Add
(@"minExclusive");
13401
_id84_PortType = Reader.NameTable.
Add
(@"PortType");
13402
_id42_mimeXml = Reader.NameTable.
Add
(@"mimeXml");
13403
_id138_minInclusive = Reader.NameTable.
Add
(@"minInclusive");
13404
_id118_source = Reader.NameTable.
Add
(@"source");
13405
_id73_Soap12OperationBinding = Reader.NameTable.
Add
(@"Soap12OperationBinding");
13406
_id131_restriction = Reader.NameTable.
Add
(@"restriction");
13407
_id152_XmlSchemaMaxExclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMaxExclusiveFacet");
13408
_id135_XmlSchemaSimpleTypeRestriction = Reader.NameTable.
Add
(@"XmlSchemaSimpleTypeRestriction");
13409
_id188_XmlSchemaAll = Reader.NameTable.
Add
(@"XmlSchemaAll");
13410
_id116_appinfo = Reader.NameTable.
Add
(@"appinfo");
13411
_id86_parameterOrder = Reader.NameTable.
Add
(@"parameterOrder");
13412
_id147_minLength = Reader.NameTable.
Add
(@"minLength");
13413
_id78_HttpOperationBinding = Reader.NameTable.
Add
(@"HttpOperationBinding");
13414
_id161_XmlSchemaSimpleTypeList = Reader.NameTable.
Add
(@"XmlSchemaSimpleTypeList");
13415
_id205_XmlSchemaRedefine = Reader.NameTable.
Add
(@"XmlSchemaRedefine");
13416
_id194_XmlSchemaSimpleContent = Reader.NameTable.
Add
(@"XmlSchemaSimpleContent");
13417
_id91_MessagePart = Reader.NameTable.
Add
(@"MessagePart");
13418
_id92_element = Reader.NameTable.
Add
(@"element");
13419
_id114_processContents = Reader.NameTable.
Add
(@"processContents");
13420
_id18_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/wsdl/http/");
13421
_id50_headerfault = Reader.NameTable.
Add
(@"headerfault");
13422
_id154_XmlSchemaEnumerationFacet = Reader.NameTable.
Add
(@"XmlSchemaEnumerationFacet");
13423
_id96_XmlSchema = Reader.NameTable.
Add
(@"XmlSchema");
13424
_id127_form = Reader.NameTable.
Add
(@"form");
13425
_id176_field = Reader.NameTable.
Add
(@"field");
13426
_id49_part = Reader.NameTable.
Add
(@"part");
13427
_id5_Item = Reader.NameTable.
Add
(@"");
13428
_id57_match = Reader.NameTable.
Add
(@"match");
13429
_id52_Soap12BodyBinding = Reader.NameTable.
Add
(@"Soap12BodyBinding");
13430
_id104_redefine = Reader.NameTable.
Add
(@"redefine");
13431
_id20_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/wsdl/soap12/");
13432
_id21_Soap12AddressBinding = Reader.NameTable.
Add
(@"Soap12AddressBinding");
13433
_id142_enumeration = Reader.NameTable.
Add
(@"enumeration");
13434
_id24_SoapAddressBinding = Reader.NameTable.
Add
(@"SoapAddressBinding");
13435
_id103_include = Reader.NameTable.
Add
(@"include");
13436
_id139_maxLength = Reader.NameTable.
Add
(@"maxLength");
13437
_id165_maxOccurs = Reader.NameTable.
Add
(@"maxOccurs");
13438
_id65_MimePart = Reader.NameTable.
Add
(@"MimePart");
13439
_id102_id = Reader.NameTable.
Add
(@"id");
13440
_id196_Item = Reader.NameTable.
Add
(@"XmlSchemaSimpleContentExtension");
13441
_id140_length = Reader.NameTable.
Add
(@"length");
13442
_id27_type = Reader.NameTable.
Add
(@"type");
13443
_id106_complexType = Reader.NameTable.
Add
(@"complexType");
13444
_id31_output = Reader.NameTable.
Add
(@"output");
13445
_id1_definitions = Reader.NameTable.
Add
(@"definitions");
13446
_id4_name = Reader.NameTable.
Add
(@"name");
13447
_id132_union = Reader.NameTable.
Add
(@"union");
13448
_id29_OperationBinding = Reader.NameTable.
Add
(@"OperationBinding");
13449
_id170_key = Reader.NameTable.
Add
(@"key");
13450
_id45_Item = Reader.NameTable.
Add
(@"http://microsoft.com/wsdl/mime/textMatching/");
13451
_id95_Item = Reader.NameTable.
Add
(@"http://www.w3.org/2001/XMLSchema");
13452
_id169_substitutionGroup = Reader.NameTable.
Add
(@"substitutionGroup");
13453
_id178_xpath = Reader.NameTable.
Add
(@"xpath");
13454
_id9_types = Reader.NameTable.
Add
(@"types");
13455
_id97_attributeFormDefault = Reader.NameTable.
Add
(@"attributeFormDefault");
13456
_id62_pattern = Reader.NameTable.
Add
(@"pattern");
13457
_id58_MimeTextMatch = Reader.NameTable.
Add
(@"MimeTextMatch");
13458
_id180_XmlSchemaKey = Reader.NameTable.
Add
(@"XmlSchemaKey");
13459
_id10_message = Reader.NameTable.
Add
(@"message");
13460
_id8_import = Reader.NameTable.
Add
(@"import");
13461
_id148_XmlSchemaMinLengthFacet = Reader.NameTable.
Add
(@"XmlSchemaMinLengthFacet");
13462
_id105_simpleType = Reader.NameTable.
Add
(@"simpleType");
13463
_id181_XmlSchemaComplexType = Reader.NameTable.
Add
(@"XmlSchemaComplexType");
13464
_id164_minOccurs = Reader.NameTable.
Add
(@"minOccurs");
13465
_id144_maxExclusive = Reader.NameTable.
Add
(@"maxExclusive");
13466
_id160_XmlSchemaFractionDigitsFacet = Reader.NameTable.
Add
(@"XmlSchemaFractionDigitsFacet");
13467
_id124_XmlSchemaAttribute = Reader.NameTable.
Add
(@"XmlSchemaAttribute");
13468
_id209_Import = Reader.NameTable.
Add
(@"Import");
13469
_id206_schemaLocation = Reader.NameTable.
Add
(@"schemaLocation");
13470
_id179_XmlSchemaUnique = Reader.NameTable.
Add
(@"XmlSchemaUnique");
13471
_id75_style = Reader.NameTable.
Add
(@"style");
13472
_id119_XmlSchemaDocumentation = Reader.NameTable.
Add
(@"XmlSchemaDocumentation");
13473
_id136_base = Reader.NameTable.
Add
(@"base");
13474
_id66_MimeXmlBinding = Reader.NameTable.
Add
(@"MimeXmlBinding");
13475
_id30_input = Reader.NameTable.
Add
(@"input");
13476
_id40_content = Reader.NameTable.
Add
(@"content");
13477
_id93_Types = Reader.NameTable.
Add
(@"Types");
13478
_id94_schema = Reader.NameTable.
Add
(@"schema");
13479
_id200_Item = Reader.NameTable.
Add
(@"XmlSchemaComplexContentExtension");
13480
_id67_MimeContentBinding = Reader.NameTable.
Add
(@"MimeContentBinding");
13481
_id59_group = Reader.NameTable.
Add
(@"group");
13482
_id32_fault = Reader.NameTable.
Add
(@"fault");
13483
_id80_transport = Reader.NameTable.
Add
(@"transport");
13484
_id98_blockDefault = Reader.NameTable.
Add
(@"blockDefault");
13485
_id13_service = Reader.NameTable.
Add
(@"service");
13486
_id54_SoapHeaderBinding = Reader.NameTable.
Add
(@"SoapHeaderBinding");
13487
_id204_system = Reader.NameTable.
Add
(@"system");
13488
_id16_Port = Reader.NameTable.
Add
(@"Port");
13489
_id108_notation = Reader.NameTable.
Add
(@"notation");
13490
_id186_choice = Reader.NameTable.
Add
(@"choice");
13491
_id110_attributeGroup = Reader.NameTable.
Add
(@"attributeGroup");
13492
_id79_Soap12Binding = Reader.NameTable.
Add
(@"Soap12Binding");
13493
_id77_SoapOperationBinding = Reader.NameTable.
Add
(@"SoapOperationBinding");
13494
_id115_XmlSchemaAnnotation = Reader.NameTable.
Add
(@"XmlSchemaAnnotation");
13495
_id83_verb = Reader.NameTable.
Add
(@"verb");
13496
_id72_HttpUrlEncodedBinding = Reader.NameTable.
Add
(@"HttpUrlEncodedBinding");
13497
_id39_OutputBinding = Reader.NameTable.
Add
(@"OutputBinding");
13498
_id183_complexContent = Reader.NameTable.
Add
(@"complexContent");
13499
_id202_XmlSchemaNotation = Reader.NameTable.
Add
(@"XmlSchemaNotation");
13500
_id81_SoapBinding = Reader.NameTable.
Add
(@"SoapBinding");
13501
_id199_Item = Reader.NameTable.
Add
(@"XmlSchemaComplexContentRestriction");
13502
_id28_operation = Reader.NameTable.
Add
(@"operation");
13503
_id122_XmlSchemaAttributeGroupRef = Reader.NameTable.
Add
(@"XmlSchemaAttributeGroupRef");
13504
_id155_XmlSchemaPatternFacet = Reader.NameTable.
Add
(@"XmlSchemaPatternFacet");
13505
_id76_soapActionRequired = Reader.NameTable.
Add
(@"soapActionRequired");
13506
_id90_Message = Reader.NameTable.
Add
(@"Message");
13507
_id159_XmlSchemaMinInclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMinInclusiveFacet");
13508
_id208_XmlSchemaInclude = Reader.NameTable.
Add
(@"XmlSchemaInclude");
13509
_id85_Operation = Reader.NameTable.
Add
(@"Operation");
13510
_id130_list = Reader.NameTable.
Add
(@"list");
13511
_id14_Service = Reader.NameTable.
Add
(@"Service");
13512
_id22_required = Reader.NameTable.
Add
(@"required");
13513
_id174_refer = Reader.NameTable.
Add
(@"refer");
13514
_id71_HttpUrlReplacementBinding = Reader.NameTable.
Add
(@"HttpUrlReplacementBinding");
13515
_id56_MimeTextBinding = Reader.NameTable.
Add
(@"MimeTextBinding");
13516
_id87_OperationFault = Reader.NameTable.
Add
(@"OperationFault");
13517
_id125_default = Reader.NameTable.
Add
(@"default");
13518
_id15_port = Reader.NameTable.
Add
(@"port");
13519
_id51_SoapHeaderFaultBinding = Reader.NameTable.
Add
(@"SoapHeaderFaultBinding");
13520
_id128_XmlSchemaSimpleType = Reader.NameTable.
Add
(@"XmlSchemaSimpleType");
13521
_id36_namespace = Reader.NameTable.
Add
(@"namespace");
13522
_id175_selector = Reader.NameTable.
Add
(@"selector");
13523
_id150_XmlSchemaMinExclusiveFacet = Reader.NameTable.
Add
(@"XmlSchemaMinExclusiveFacet");
13524
_id100_elementFormDefault = Reader.NameTable.
Add
(@"elementFormDefault");
13525
_id26_Binding = Reader.NameTable.
Add
(@"Binding");
13526
_id197_Item = Reader.NameTable.
Add
(@"XmlSchemaSimpleContentRestriction");
13527
_id126_fixed = Reader.NameTable.
Add
(@"fixed");
13528
_id107_annotation = Reader.NameTable.
Add
(@"annotation");
13529
_id99_finalDefault = Reader.NameTable.
Add
(@"finalDefault");
13530
_id137_fractionDigits = Reader.NameTable.
Add
(@"fractionDigits");
13531
_id70_urlReplacement = Reader.NameTable.
Add
(@"urlReplacement");
13532
_id189_XmlSchemaChoice = Reader.NameTable.
Add
(@"XmlSchemaChoice");
13533
_id2_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/wsdl/");
13534
_id112_anyAttribute = Reader.NameTable.
Add
(@"anyAttribute");
13535
_id89_OperationInput = Reader.NameTable.
Add
(@"OperationInput");
13536
_id141_totalDigits = Reader.NameTable.
Add
(@"totalDigits");
13537
_id61_repeats = Reader.NameTable.
Add
(@"repeats");
13538
_id184_simpleContent = Reader.NameTable.
Add
(@"simpleContent");
13539
_id55_SoapBodyBinding = Reader.NameTable.
Add
(@"SoapBodyBinding");
13540
_id145_whiteSpace = Reader.NameTable.
Add
(@"whiteSpace");
13541
_id167_block = Reader.NameTable.
Add
(@"block");
13542
_id151_XmlSchemaWhiteSpaceFacet = Reader.NameTable.
Add
(@"XmlSchemaWhiteSpaceFacet");
13543
_id12_binding = Reader.NameTable.
Add
(@"binding");
13544
_id109_attribute = Reader.NameTable.
Add
(@"attribute");
13545
_id171_unique = Reader.NameTable.
Add
(@"unique");
13546
_id120_lang = Reader.NameTable.
Add
(@"lang");
13547
_id173_XmlSchemaKeyref = Reader.NameTable.
Add
(@"XmlSchemaKeyref");
13548
_id177_XmlSchemaXPath = Reader.NameTable.
Add
(@"XmlSchemaXPath");
13549
_id34_Soap12FaultBinding = Reader.NameTable.
Add
(@"Soap12FaultBinding");
13550
_id41_Item = Reader.NameTable.
Add
(@"http://schemas.xmlsoap.org/wsdl/mime/");
13551
_id156_XmlSchemaTotalDigitsFacet = Reader.NameTable.
Add
(@"XmlSchemaTotalDigitsFacet");
13552
_id113_XmlSchemaAnyAttribute = Reader.NameTable.
Add
(@"XmlSchemaAnyAttribute");
FrameworkFork\System.Web.Services\Services\Description\WebReferenceOptions.cs (7)
490
_id2_Item = Reader.NameTable.
Add
(@"http://microsoft.com/webReference/");
491
_id5_type = Reader.NameTable.
Add
(@"type");
492
_id4_schemaImporterExtensions = Reader.NameTable.
Add
(@"schemaImporterExtensions");
493
_id3_codeGenerationOptions = Reader.NameTable.
Add
(@"codeGenerationOptions");
494
_id6_style = Reader.NameTable.
Add
(@"style");
495
_id7_verbose = Reader.NameTable.
Add
(@"verbose");
496
_id1_webReferenceOptions = Reader.NameTable.
Add
(@"webReferenceOptions");