1 type derived from XmlAttribute
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlUnspecifiedAttribute.cs (1)
9internal class XmlUnspecifiedAttribute : XmlAttribute
5 instantiations of XmlAttribute
dotnet-svcutil-lib (5)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (2)
997return new XmlAttribute(AddAttrXmlName(prefix, localName, namespaceURI, null), this); 1773_namespaceXml = new XmlAttribute(AddAttrXmlName(strXmlns, strXml, strReservedXmlns, null), this);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (1)
580attr = new XmlAttribute(r.Prefix, r.LocalName, r.NamespaceURI, _doc);
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (1)
766XmlAttribute attribute = new XmlAttribute(prefix, name, ns, _schema.Document);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (1)
255XmlAttribute attribute = new XmlAttribute("wsdl", Wsdl.ArrayType, Wsdl.Namespace, Document);
1247 references to XmlAttribute
dotnet-svcutil-lib (1247)
CodeDomFixup\CodeDomVisitors\XmlDomAttributeFixer.cs (1)
13private static readonly Type[] s_filteredTypes = new Type[] { typeof(Microsoft.Xml.XmlAttribute), };
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (9)
151partialValidationType = FindSchemaInfo(nodeToValidate as XmlAttribute); 194XmlAttribute attr = attrs[i]; 219node = ((XmlAttribute)node).OwnerElement; 307XmlAttribute attr = _currentNode as XmlAttribute; 349XmlAttribute attr = null; 408XmlAttribute attr = null; 577private XmlSchemaAttribute FindSchemaInfo(XmlAttribute attributeToValidate) 705XmlAttribute attr = null;
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (12)
213XmlAttribute attr = _document.CreateAttribute(prefix, localName, ns); 221XmlAttribute attr = _write as XmlAttribute; 252XmlAttribute attr; 268XmlAttribute attr = _write as XmlAttribute; 431XmlAttribute attr = _fragment[i] as XmlAttribute; 435&& ((XmlAttribute)attrs.nodes[offset]).Specified) 442XmlAttribute attr = _fragment[i] as XmlAttribute; 496private void AddAttribute(XmlAttribute attr, XmlNode parent)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (43)
56if (((XmlAttribute)node).IsNamespace) 119XmlAttribute attribute = _source as XmlAttribute; 139if (((XmlAttribute)_source).IsNamespace) 159XmlAttribute attribute = _source as XmlAttribute; 279XmlAttribute attribute = attributes[i]; 304XmlAttribute attribute = attributes[i]; 333XmlAttribute attribute = attributes[i]; 347XmlAttribute attribute = _source as XmlAttribute; 378XmlAttribute attribute = node as XmlAttribute; 406XmlAttribute attribute = element.GetAttributeNode(localName, namespaceUri); 450XmlAttribute attribute = element.GetAttributeNode(localName, namespaceUri); 502XmlAttribute attribute = attributes[index]; 541XmlAttribute attribute = attributes[i]; 577XmlAttribute attribute = _source as XmlAttribute; 656XmlAttribute attribute = attributes[i]; 696XmlAttribute attribute = bottom.GetAttributeNode(localName, namespaceUri); 855XmlAttribute attribute = _source as XmlAttribute; 876XmlAttribute attribute = _source as XmlAttribute; 999following = ((XmlAttribute)following).OwnerElement; 1081following = ((XmlAttribute)following).OwnerElement; 1300XmlAttribute attribute = node as XmlAttribute; 1333XmlElement element = ((XmlAttribute)node1).OwnerElement; 1339XmlAttribute attribute = attributes[i]; 1694XmlAttribute attribute = (XmlAttribute)node; 1753XmlAttribute attribute = (XmlAttribute)node; 1789private static void DeleteAttribute(XmlAttribute attribute, int index) 1848XmlAttribute attribute = attributes[j]; 1864XmlAttribute attribute = node as XmlAttribute; 1879private static bool ResetAttributePosition(XmlAttribute attribute, XmlAttributeCollection attributes, out int index) 1896private static bool CheckAttributePosition(XmlAttribute attribute, out XmlAttributeCollection attributes, int index) 2105XmlAttribute attribute = bottom as XmlAttribute;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (1)
56XmlAttribute attr = doc.CreateAttribute(Prefix, LocalName, NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (50)
21public XmlAttribute this[int i] 27return (XmlAttribute)nodes[i]; 38public XmlAttribute this[string name] 46XmlAttribute node = (XmlAttribute)nodes[i]; 61public XmlAttribute this[string localName, string namespaceURI] 69XmlAttribute node = (XmlAttribute)nodes[i]; 83internal int FindNodeOffset(XmlAttribute node) 87XmlAttribute tmp = (XmlAttribute)nodes[i]; 99internal int FindNodeOffsetNS(XmlAttribute node) 103XmlAttribute tmp = (XmlAttribute)nodes[i]; 117if (node != null && !(node is XmlAttribute)) 123return InternalAppendAttribute((XmlAttribute)node); 134public XmlAttribute Prepend(XmlAttribute node) 149public XmlAttribute Append(XmlAttribute node) 173public XmlAttribute InsertBefore(XmlAttribute newNode, XmlAttribute refNode) 202public XmlAttribute InsertAfter(XmlAttribute newNode, XmlAttribute refNode) 231public XmlAttribute Remove(XmlAttribute node) 246public XmlAttribute RemoveAt(int i) 251return (XmlAttribute)RemoveNodeAt(i); 286public void CopyTo(XmlAttribute[] array, int index) 289array[index] = (XmlAttribute)(((XmlNode)nodes[i]).CloneNode(true)); 295RemoveDuplicateAttribute((XmlAttribute)node); 297Debug.Assert(retNode is XmlAttribute); 298InsertParentIntoElementIdAttrMap((XmlAttribute)node); 305InsertParentIntoElementIdAttrMap((XmlAttribute)node); 313Debug.Assert(retNode is XmlAttribute); 314RemoveParentFromElementIdAttrMap((XmlAttribute)retNode); 316XmlAttribute defattr = parent.OwnerDocument.GetDefaultAttribute((XmlElement)parent, retNode.Prefix, retNode.LocalName, retNode.NamespaceURI); 322internal void Detach(XmlAttribute attr) 328internal void InsertParentIntoElementIdAttrMap(XmlAttribute attr) 344internal void RemoveParentFromElementIdAttrMap(XmlAttribute attr) 362internal int RemoveDuplicateAttribute(XmlAttribute attr) 367XmlAttribute at = (XmlAttribute)nodes[ind]; 405internal XmlAttribute InternalAppendAttribute(XmlAttribute node) 411Debug.Assert(retNode is XmlAttribute); 412InsertParentIntoElementIdAttrMap((XmlAttribute)node); 413return (XmlAttribute)retNode;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (12)
75private XmlAttribute _namespaceXml; 535public XmlAttribute CreateAttribute(String name) 620XmlAttribute defattr = PrepareDefaultAttribute(attdef, attrPrefix, attrLocalname, attrNamespaceURI); 645private XmlAttribute PrepareDefaultAttribute(SchemaAttDef attdef, string attrPrefix, string attrLocalname, string attrNamespaceURI) 648XmlAttribute defattr = CreateDefaultAttribute(attrPrefix, attrLocalname, attrNamespaceURI); 840public XmlAttribute CreateAttribute(String qualifiedName, String namespaceURI) 912Debug.Assert(((XmlAttribute)node).Specified); 995public virtual XmlAttribute CreateAttribute(string prefix, string localName, string namespaceURI) 1000protected internal virtual XmlAttribute CreateDefaultAttribute(string prefix, string localName, string namespaceURI) 1616internal XmlAttribute GetDefaultAttribute(XmlElement elem, string attrPrefix, string attrLocalname, string attrNamespaceURI) 1635XmlAttribute defattr = PrepareDefaultAttribute(attdef, attrPrefix, attrLocalname, attrNamespaceURI); 1767internal XmlAttribute NamespaceXml
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (21)
66foreach (XmlAttribute attr in Attributes) 68XmlAttribute newAttr = (XmlAttribute)(attr.CloneNode(true)); 270XmlAttribute attr = GetAttributeNode(name); 280XmlAttribute attr = GetAttributeNode(name); 301public virtual XmlAttribute GetAttributeNode(string name) 309public virtual XmlAttribute SetAttributeNode(XmlAttribute newAttr) 313return (XmlAttribute)Attributes.SetNamedItem(newAttr); 317public virtual XmlAttribute RemoveAttributeNode(XmlAttribute oldAttr) 320return (XmlAttribute)Attributes.Remove(oldAttr); 338XmlAttribute attr = GetAttributeNode(localName, namespaceURI); 348XmlAttribute attr = GetAttributeNode(localName, namespaceURI); 371public virtual XmlAttribute GetAttributeNode(string localName, string namespaceURI) 380public virtual XmlAttribute SetAttributeNode(string localName, string namespaceURI) 382XmlAttribute attr = GetAttributeNode(localName, namespaceURI); 392public virtual XmlAttribute RemoveAttributeNode(string localName, string namespaceURI) 397XmlAttribute attr = GetAttributeNode(localName, namespaceURI); 511XmlAttribute attr = attrs[i]; 632XmlAttribute attr = GetAttributeNode(localName, ns);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (11)
121XmlAttribute attr = LoadAttributeNode(); 254private XmlAttribute LoadAttributeNode() 264XmlAttribute attr = _doc.CreateAttribute(r.Prefix, r.LocalName, r.NamespaceURI); 302private XmlAttribute LoadDefaultAttribute() 307XmlAttribute attr = _doc.CreateDefaultAttribute(r.Prefix, r.LocalName, r.NamespaceURI); 479XmlAttribute attr = LoadAttributeNodeDirect(); 567private XmlAttribute LoadAttributeNodeDirect() 570XmlAttribute attr; 707foreach (XmlAttribute attr in ((XmlElement)node).Attributes) 801internal void LoadInnerXmlAttribute(XmlAttribute node, string innerxmltext) 817XmlAttribute attr = attrs[i];
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNamedNodeMap.cs (2)
145oldParent = ((XmlAttribute)node).OwnerElement; 209oldParent = ((XmlAttribute)node).OwnerElement;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (6)
852n = ((XmlAttribute)n).OwnerElement; 1084XmlAttribute attr = attrs[iAttr]; 1098XmlAttribute attr = attrs[iAttr]; 1121node = ((XmlAttribute)node).OwnerElement; 1167XmlAttribute attr = attrs[iAttr]; 1200node = ((XmlAttribute)node).OwnerElement;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (12)
313return !((XmlAttribute)_curNode).Specified; 486XmlAttribute attr = elem.GetAttributeNode(name); 512XmlAttribute attr = elem.GetAttributeNode(name, ns); 634_curNode = ((XmlAttribute)_curNode).OwnerElement; 649XmlAttribute attr = null; 700XmlAttribute attr = null; 891XmlAttribute attr = elem.GetAttributeNode(attrName); 900node = ((XmlAttribute)node).OwnerElement; 962XmlAttribute a = attrs[i]; 986node = ((XmlAttribute)node).OwnerElement; 1012XmlAttribute a = attrs[i]; 1037node = ((XmlAttribute)node).OwnerElement;
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (8)
359XmlAttribute attr = LoadAttributeNode(); 367XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, _namespaceManager.LookupNamespace(r.Prefix)); 375XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, elemNS); 387XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, _namespaceManager.LookupNamespace(r.Prefix)); 403private XmlAttribute CreateXmlNsAttribute(string prefix, string value) 405XmlAttribute attr; 419private XmlAttribute LoadAttributeNode() 425XmlAttribute attr = _dummyDocument.CreateAttribute(r.Prefix, r.LocalName, r.NamespaceURI);
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchema.cs (3)
44private XmlAttribute[] _moreAttributes; 492public XmlAttribute[] UnhandledAttributes 662internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAnnotated.cs (3)
22private XmlAttribute[] _moreAttributes; 51public XmlAttribute[] UnhandledAttributes 64internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaAnnotation.cs (3)
22private XmlAttribute[] _moreAttributes; 51public XmlAttribute[] UnhandledAttributes 64internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaExternal.cs (3)
22private XmlAttribute[] _moreAttributes; 51public XmlAttribute[] UnhandledAttributes 71internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
FrameworkFork\Microsoft.Xml\Xml\schema\XmlSchemaObject.cs (1)
95internal virtual void SetUnhandledAttributes(XmlAttribute[] moreAttributes) { }
FrameworkFork\Microsoft.Xml\Xml\schema\XsdBuilder.cs (3)
766XmlAttribute attribute = new XmlAttribute(prefix, name, ns, _schema.Document); 803_xso.SetUnhandledAttributes((XmlAttribute[])_unhandledAttributes.ToArray(typeof(Microsoft.Xml.XmlAttribute)));
FrameworkFork\Microsoft.Xml\Xml\Serialization\_Events.cs (3)
25private XmlAttribute _attr; 31internal XmlAttributeEventArgs(XmlAttribute attr, int lineNumber, int linePosition, object o, string qnames) 54public XmlAttribute Attr
FrameworkFork\Microsoft.Xml\Xml\Serialization\ImportContext.cs (3)
522XmlAttribute[] attrs = (XmlAttribute[])((XmlSchemaAnnotated)item).UnhandledAttributes; 528XmlAttribute attribute = attrs[i];
FrameworkFork\Microsoft.Xml\Xml\Serialization\SchemaObjectWriter.cs (36)
19XmlAttribute a1 = (XmlAttribute)o1; 20XmlAttribute a2 = (XmlAttribute)o2; 205private void WriteAttribute(XmlAttribute a) 213private void WriteAttributes(XmlAttribute[] a, XmlSchemaObject o) 224XmlAttribute attribute = (XmlAttribute)attrs[i]; 303WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 497WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 562WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 592WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 624WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 639WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 725WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 750WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 768WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 782WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 817WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 854WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 873WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 889WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 909WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 928WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 963WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1017WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1038WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1081WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1094WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1120WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1143WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1160WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1173WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1219WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1230WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o); 1266WriteAttributes((XmlAttribute[])o.@UnhandledAttributes, o);
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaExporter.cs (2)
255XmlAttribute attribute = new XmlAttribute("wsdl", Wsdl.ArrayType, Wsdl.Namespace, Document); 258attr.UnhandledAttributes = new XmlAttribute[] { attribute };
FrameworkFork\Microsoft.Xml\Xml\Serialization\SoapSchemaImporter.cs (1)
487foreach (XmlAttribute a in attribute.UnhandledAttributes)
FrameworkFork\Microsoft.Xml\Xml\Serialization\Types.cs (2)
890if (type == typeof(XmlAttribute)) 904else if (type.IsAssignableFrom(typeof(XmlAttribute)))
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemaImporter.cs (1)
1595mapping.TypeDesc = Scope.GetTypeDesc(typeof(XmlAttribute));
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSchemas.cs (1)
416foreach (XmlAttribute a in e.UnhandledAttributes)
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationReader.cs (8)
808protected void ParseWsdlArrayType(XmlAttribute attr) 1227protected void UnknownAttribute(object o, XmlAttribute attr) 1233protected void UnknownAttribute(object o, XmlAttribute attr, string qnames) 1310UnknownAttribute(o, (XmlAttribute)unknownNode, qnames); 1983XmlAttribute attr = Document.CreateAttribute(elemName, elemNs); 2008XmlAttribute xmlAttribute = (XmlAttribute)Document.ReadNode(_r); 2020XmlAttribute xsiTypeAttribute = Document.CreateAttribute(_typeID, _instanceNsID);
FrameworkFork\Microsoft.Xml\Xml\Serialization\XmlSerializationWriter.cs (3)
778if (typeof(XmlAttribute).IsAssignableFrom(node.GetType())) 934XmlAttribute attr = node as XmlAttribute;
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElementImporter.cs (1)
245XmlAttribute millisecondsAttribute = wsrmNode.Attributes[ReliableSessionPolicyStrings.Milliseconds];
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (2)
299XmlAttribute attr = doc.CreateAttribute(TransactionPolicyStrings.OptionalPrefix11, 308XmlAttribute attrLegacy = doc.CreateAttribute(TransactionPolicyStrings.OptionalPrefix10,
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataReference.cs (2)
22private Collection<XmlAttribute> _attributes = new Collection<XmlAttribute>();
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSection.cs (3)
20private Collection<XmlAttribute> _attributes = new Collection<XmlAttribute>(); 45public Collection<XmlAttribute> Attributes
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\MetadataSet.cs (19)
20private Collection<XmlAttribute> _attributes = new Collection<XmlAttribute>(); 43public Collection<XmlAttribute> Attributes 284global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute> a = (global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute>)o.@Attributes; 289global::Microsoft.Xml.XmlAttribute ai = (global::Microsoft.Xml.XmlAttribute)a[i]; 336global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute> a = (global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute>)o.@Attributes; 341global::Microsoft.Xml.XmlAttribute ai = (global::Microsoft.Xml.XmlAttribute)a[i]; 471global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute> a_1 = (global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute>)o.@Attributes; 477Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 532global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute> a_0 = (global::System.Collections.ObjectModel.Collection<global::Microsoft.Xml.XmlAttribute>)o.@Attributes; 548Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\PolicyReader.cs (1)
234internal static bool IsPolicyURIs(XmlAttribute attribute)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (4)
28private static XmlAttribute CreateLocalAttribute(string name, string value) 30XmlAttribute attribute = Document.CreateAttribute(name); 392foreach (XmlAttribute attribute in src.Attributes) 641XmlAttribute attribute = element.GetAttributeNode("use");
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (9)
577XmlAttribute attribute; 592wsdlOperationMessage.ExtensibleAttributes = new XmlAttribute[] { attribute }; 815XmlAttribute uriAttribute = XmlDoc.CreateAttribute(MetadataStrings.WSPolicy.Attributes.URI); 828XmlAttribute idAttribute = XmlDoc.CreateAttribute(MetadataStrings.Wsu.Prefix, 1145private static XmlAttribute[] CloneAndAddToAttributes(XmlAttribute[] originalAttributes, string prefix, string localName, string ns, string value) 1147XmlAttribute newAttribute = XmlDoc.CreateAttribute(prefix, localName, ns); 1154XmlAttribute[] attributes = new XmlAttribute[originalAttributeCount + 1];
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (22)
1032XmlAttribute[] attributes = wsdlOperationMessage.ExtensibleAttributes; 1035foreach (XmlAttribute attribute in attributes) 1242XmlAttribute isInitiating = FindAttribute(wsdlOperation.ExtensibleAttributes, WsdlExporter.NetSessionHelper.IsInitiating, 1257XmlAttribute isTerminating = FindAttribute(wsdlOperation.ExtensibleAttributes, WsdlExporter.NetSessionHelper.IsTerminating, 1275XmlAttribute usingSession = FindAttribute(wsdlPortType.ExtensibleAttributes, WsdlExporter.NetSessionHelper.UsingSession, 1291private static XmlAttribute FindAttribute(XmlAttribute[] attributes, string localName, string ns) 1295foreach (XmlAttribute attribute in attributes) 1375XmlAttribute[] attributes = item.ExtensibleAttributes; 1378foreach (XmlAttribute attribute in attributes) 1386Array.Resize<XmlAttribute>(ref attributes, i + 1); 1392attributes = new XmlAttribute[1]; 1399private static XmlAttribute CreatePolicyURIsAttribute(string value) 1401XmlAttribute attribute = XmlDoc.CreateAttribute(MetadataStrings.WSPolicy.Prefix, 1411XmlAttribute[] attributes = item.ExtensibleAttributes; 1414foreach (XmlAttribute attribute in attributes) 1432XmlAttribute idAttribute = XmlDoc.CreateAttribute(MetadataStrings.Wsu.Prefix, 1465XmlAttribute bindingName = s_xmlDocument.CreateAttribute(bindingAttrName); 1469XmlAttribute bindingNamespace = s_xmlDocument.CreateAttribute(bindingAttrNamespace); 2145XmlAttribute[] attributes = item.ExtensibleAttributes; 2148foreach (XmlAttribute attribute in attributes) 2162XmlAttribute[] attributes = item.ExtensibleAttributes;
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (1)
333XmlAttribute attr = doc.CreateAttribute("Uri");
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
102XmlAttribute dialectAttribute = result.OwnerDocument.CreateAttribute(DXD.TrustDec2005Dictionary.Dialect.Value);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (3)
630private XmlAttribute[] _anyAttribute; 677public Microsoft.Xml.XmlAttribute[] ExtensibleAttributes 1747XmlAttribute requiredAttr = element.Attributes["required", ServiceDescription.Namespace];
FrameworkFork\System.Web.Services\Services\Description\ServiceDescriptionSerializer.cs (915)
42Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 47Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 154Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 159Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 224Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 229Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 395Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 400Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 492Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 497Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 590Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 595Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 770Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 775Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 1380Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1385Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 1760Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1765Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 1830Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1835Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 1931Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1936Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 1992Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1997Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2053Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 2058Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2114Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 2119Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2184Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 2189Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2246Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 2251Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2335Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 2340Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2453Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 2458Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2637Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 2642Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2696Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 2701Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2774Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 2779Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2831Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 2836Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2947Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 2952Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 2996Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3001Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3037Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3042Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3086Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3091Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3136Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3141Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3199Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3204Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3238Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3243Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3344Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3349Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3386Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3391Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3428Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3433Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3470Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3475Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3512Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3517Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3554Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3559Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3596Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3601Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3638Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3643Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3680Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3685Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3722Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3727Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3764Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3769Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3806Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3811Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3848Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3853Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 3942Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 3947Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4066Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4071Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4108Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4113Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4184Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4189Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4222Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4227Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4262Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4267Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4311Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4316Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4389Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4394Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4444Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4449Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4535Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4540Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4626Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4631Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4680Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4685Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4814Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4819Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4880Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4885Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4920Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4925Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 4987Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 4992Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 5025Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 5030Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 5064Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@UnhandledAttributes; 5069Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 5137Microsoft.Xml.XmlAttribute[] a = (Microsoft.Xml.XmlAttribute[])o.@ExtensibleAttributes; 5142Microsoft.Xml.XmlAttribute ai = (Microsoft.Xml.XmlAttribute)a[i]; 5221Microsoft.Xml.XmlAttribute[] a_1 = null; 5249Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 5251a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5254o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5259o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5312o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5333Microsoft.Xml.XmlAttribute[] a_1 = null; 5352Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 5354a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5357o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5362o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5394o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5415Microsoft.Xml.XmlAttribute[] a_1 = null; 5438Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 5440a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5443o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5448o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5488o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5692Microsoft.Xml.XmlAttribute[] a_1 = null; 5716Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 5718a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5721o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5726o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5770o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5791Microsoft.Xml.XmlAttribute[] a_1 = null; 5810Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 5812a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5815o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5820o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5874o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5895Microsoft.Xml.XmlAttribute[] a_1 = null; 5913Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 5915a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5918o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5923o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 5959o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 6152Microsoft.Xml.XmlAttribute[] a_1 = null; 6170Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 6172a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 6175o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 6180o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 6240o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7182Microsoft.Xml.XmlAttribute[] a_1 = null; 7200Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 7202a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 7205o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7210o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7278o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7822Microsoft.Xml.XmlAttribute[] a_1 = null; 7841Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 7843a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 7846o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7851o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7883o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7904Microsoft.Xml.XmlAttribute[] a_1 = null; 7929Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 7931a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 7934o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7939o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 7979o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8000Microsoft.Xml.XmlAttribute[] a_1 = null; 8023Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8025a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8028o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8033o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8061o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8082Microsoft.Xml.XmlAttribute[] a_1 = null; 8105Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8107a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8110o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8115o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8143o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8164Microsoft.Xml.XmlAttribute[] a_1 = null; 8187Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8189a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8192o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8197o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8225o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8246Microsoft.Xml.XmlAttribute[] a_1 = null; 8265Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8267a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8270o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8275o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8307o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8328Microsoft.Xml.XmlAttribute[] a_1 = null; 8356Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8358a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8361o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8366o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8394o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8415Microsoft.Xml.XmlAttribute[] a_1 = null; 8429Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8431a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8434o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8439o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8471o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 8495Microsoft.Xml.XmlAttribute[] a_10 = null; 8542Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8544a_10 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_10, ca_10, typeof(Microsoft.Xml.XmlAttribute)); a_10[ca_10++] = attr; 8547o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_10, ca_10, typeof(Microsoft.Xml.XmlAttribute), true); 8552o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_10, ca_10, typeof(Microsoft.Xml.XmlAttribute), true); 8619o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_10, ca_10, typeof(Microsoft.Xml.XmlAttribute), true); 8641Microsoft.Xml.XmlAttribute[] a_3 = null; 8664Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8666a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 8669o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8674o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8715o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8737Microsoft.Xml.XmlAttribute[] a_3 = null; 8764Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8766a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 8769o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8774o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8802o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8825Microsoft.Xml.XmlAttribute[] a_3 = null; 8842Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 8844a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 8847o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8852o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 8883o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9067Microsoft.Xml.XmlAttribute[] a_3 = null; 9089Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9091a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9094o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9099o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9127o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9149Microsoft.Xml.XmlAttribute[] a_3 = null; 9201Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9203a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9206o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9211o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9244o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9266Microsoft.Xml.XmlAttribute[] a_3 = null; 9293Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9295a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9298o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9303o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9346o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9368Microsoft.Xml.XmlAttribute[] a_3 = null; 9397Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9399a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9402o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9408o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9441o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9464Microsoft.Xml.XmlAttribute[] a_3 = null; 9487Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9489a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9492o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9497o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9578o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9600Microsoft.Xml.XmlAttribute[] a_3 = null; 9627Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9629a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9632o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9637o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9665o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9687Microsoft.Xml.XmlAttribute[] a_3 = null; 9714Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9716a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9719o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9724o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9752o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9774Microsoft.Xml.XmlAttribute[] a_3 = null; 9801Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9803a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9806o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9811o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9839o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9861Microsoft.Xml.XmlAttribute[] a_3 = null; 9888Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9890a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9893o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9898o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9926o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9948Microsoft.Xml.XmlAttribute[] a_3 = null; 9975Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 9977a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9980o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 9985o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10013o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10035Microsoft.Xml.XmlAttribute[] a_3 = null; 10062Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10064a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10067o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10072o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10100o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10122Microsoft.Xml.XmlAttribute[] a_3 = null; 10149Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10151a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10154o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10159o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10187o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10209Microsoft.Xml.XmlAttribute[] a_3 = null; 10236Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10238a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10241o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10246o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10274o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10296Microsoft.Xml.XmlAttribute[] a_3 = null; 10323Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10325a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10328o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10333o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10361o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10383Microsoft.Xml.XmlAttribute[] a_3 = null; 10410Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10412a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10415o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10420o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10448o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10470Microsoft.Xml.XmlAttribute[] a_3 = null; 10497Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10499a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10502o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10507o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10535o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10557Microsoft.Xml.XmlAttribute[] a_3 = null; 10584Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10586a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10589o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10594o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10622o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10644Microsoft.Xml.XmlAttribute[] a_3 = null; 10666Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10668a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10671o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10676o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10709o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10779Microsoft.Xml.XmlAttribute[] a_3 = null; 10862Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10864a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10867o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10872o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10922o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10944Microsoft.Xml.XmlAttribute[] a_3 = null; 10972Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 10974a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10977o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 10982o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11019o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11041Microsoft.Xml.XmlAttribute[] a_3 = null; 11063Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11065a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11068o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11073o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11101o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11123Microsoft.Xml.XmlAttribute[] a_3 = null; 11146Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11148a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11151o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11156o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11193o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11215Microsoft.Xml.XmlAttribute[] a_3 = null; 11238Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11240a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11243o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11248o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11285o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11307Microsoft.Xml.XmlAttribute[] a_3 = null; 11350Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11352a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11355o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11360o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11431o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11453Microsoft.Xml.XmlAttribute[] a_3 = null; 11481Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11483a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11486o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11491o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11523o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11545Microsoft.Xml.XmlAttribute[] a_3 = null; 11573Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11575a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11578o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11583o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11631o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11653Microsoft.Xml.XmlAttribute[] a_3 = null; 11685Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11687a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11690o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11695o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11723o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11745Microsoft.Xml.XmlAttribute[] a_3 = null; 11773Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11775a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11778o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11783o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11831o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11853Microsoft.Xml.XmlAttribute[] a_3 = null; 11890Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11892a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11895o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11900o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11928o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11950Microsoft.Xml.XmlAttribute[] a_3 = null; 11967Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 11969a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11972o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 11977o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12015o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12037Microsoft.Xml.XmlAttribute[] a_3 = null; 12060Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12062a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12065o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12070o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12111o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12133Microsoft.Xml.XmlAttribute[] a_3 = null; 12157Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12159a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12162o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12167o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12261o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12283Microsoft.Xml.XmlAttribute[] a_3 = null; 12305Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12307a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12310o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12315o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12353o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12375Microsoft.Xml.XmlAttribute[] a_3 = null; 12398Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12400a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12403o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12408o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12469o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12491Microsoft.Xml.XmlAttribute[] a_3 = null; 12514Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12516a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12519o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12524o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12585o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12607Microsoft.Xml.XmlAttribute[] a_3 = null; 12629Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12631a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12634o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12639o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12682o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12704Microsoft.Xml.XmlAttribute[] a_3 = null; 12736Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12738a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12741o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12746o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12774o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12796Microsoft.Xml.XmlAttribute[] a_3 = null; 12819Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12821a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12824o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12829o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12872o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12894Microsoft.Xml.XmlAttribute[] a_3 = null; 12921Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 12923a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12926o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12931o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12959o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 12981Microsoft.Xml.XmlAttribute[] a_3 = null; 13003Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 13005a_3 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute)); a_3[ca_3++] = attr; 13008o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 13013o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 13041o.@UnhandledAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(Microsoft.Xml.XmlAttribute), true); 13062Microsoft.Xml.XmlAttribute[] a_1 = null; 13085Microsoft.Xml.XmlAttribute attr = (Microsoft.Xml.XmlAttribute)Document.ReadNode(Reader); 13087a_1 = (Microsoft.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute)); a_1[ca_1++] = attr; 13090o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 13095o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true); 13123o.@ExtensibleAttributes = (Microsoft.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(Microsoft.Xml.XmlAttribute), true);