4 types derived from XmlAttribute
Microsoft.Build (1)
ElementLocation\XmlAttributeWithLocation.cs (1)
15internal class XmlAttributeWithLocation : XmlAttribute, IXmlLineInfo
System.Configuration.ConfigurationManager (1)
System\Configuration\ConfigXmlAttribute.cs (1)
9internal sealed class ConfigXmlAttribute : XmlAttribute, IConfigErrorInfo
System.Private.Xml (1)
System\Xml\Dom\XmlUnspecifiedAttribute.cs (1)
6internal sealed class XmlUnspecifiedAttribute : XmlAttribute
System.Security.Cryptography.Xml (1)
System\Security\Cryptography\Xml\CanonicalXmlAttribute.cs (1)
10internal sealed class CanonicalXmlAttribute : XmlAttribute, ICanonicalizableNode
4 instantiations of XmlAttribute
System.Private.Xml (4)
System\Xml\Dom\XmlDocument.cs (2)
1062return new XmlAttribute(AddAttrXmlName(prefix, localName, namespaceURI, null), this); 1822_namespaceXml = new XmlAttribute(AddAttrXmlName(strXmlns, strXml, strReservedXmlns, null), this);
System\Xml\Dom\XmlLoader.cs (1)
577attr = new XmlAttribute(r.Prefix, r.LocalName, r.NamespaceURI, _doc!);
System\Xml\Schema\XsdBuilder.cs (1)
758XmlAttribute attribute = new XmlAttribute(prefix, name, ns, _schema.Document);
1487 references to XmlAttribute
ILLink.Tasks (9)
CreateRuntimeRootDescriptorFile.cs (9)
318 XmlAttribute featureAssemblyFullName = doc.CreateAttribute ("fullname"); 322 XmlAttribute featureName = doc.CreateAttribute ("feature"); 326 XmlAttribute featureValue = doc.CreateAttribute ("featurevalue"); 330 XmlAttribute featureDefault = doc.CreateAttribute ("featuredefault"); 352 XmlAttribute typeFullName = doc.CreateAttribute ("fullname"); 361 XmlAttribute preserve = doc.CreateAttribute ("preserve"); 365 XmlAttribute preserve = doc.CreateAttribute ("preserve"); 373 XmlAttribute fieldName = doc.CreateAttribute ("name"); 383 XmlAttribute methodName = doc.CreateAttribute ("name");
Microsoft.Build (17)
BackEnd\Components\ProjectCache\ProjectCacheService.cs (2)
673var buildProjectInSolution = projectConfiguration.Attributes![SolutionConfiguration.BuildProjectInSolutionAttribute]; 682XmlAttribute? projectPathAttribute = projectConfiguration.Attributes![SolutionConfiguration.AbsolutePathAttribute];
Construction\ProjectElement.cs (2)
398foreach (XmlAttribute attribute in element.XmlElement.Attributes) 422protected virtual bool ShouldCloneXmlAttribute(XmlAttribute attribute) => true;
Construction\ProjectItemDefinitionElement.cs (1)
127protected override bool ShouldCloneXmlAttribute(XmlAttribute attribute) => !ProjectMetadataElement.AttributeNameIsValidMetadataName(attribute.LocalName);
Construction\ProjectItemElement.cs (1)
506protected override bool ShouldCloneXmlAttribute(XmlAttribute attribute) => !ProjectMetadataElement.AttributeNameIsValidMetadataName(attribute.LocalName);
Construction\ProjectTaskElement.cs (4)
370List<XmlAttribute> toRemove = null; 374foreach (XmlAttribute attribute in XmlElement.Attributes) 378toRemove ??= new List<XmlAttribute>(); 385foreach (var attribute in toRemove)
Construction\Solution\ProjectInSolution.cs (1)
556return mainProjectElement.Attributes.OfType<XmlAttribute>().Any(a =>
ElementLocation\XmlDocumentWithLocation.cs (1)
221public override XmlAttribute CreateAttribute(string prefix, string localName, string namespaceURI)
ElementLocation\XmlElementWithLocation.cs (1)
120XmlAttribute attribute = GetAttributeNode(name);
ObjectModelRemoting\ConstructionObjectLinks\ProjectElementLink.cs (1)
148foreach (XmlAttribute attribute in xml.XmlElement.Attributes)
XmlUtilities.cs (3)
39foreach (XmlAttribute oldAttribute in oldElement.Attributes) 41XmlAttribute newAttribute = (XmlAttribute)oldAttribute.CloneNode(true);
Microsoft.Build.BuildCheck.UnitTests (1)
EndToEndTests.cs (1)
601var attribute = doc.CreateAttribute(attributeName);
Microsoft.Build.Engine.UnitTests (7)
BackEnd\BatchingEngine_Tests.cs (1)
67XmlAttribute tempXmlAttribute = (new XmlDocument()).CreateAttribute("attrib");
ConsoleLogger_Tests.cs (1)
151System.Xml.XmlAttribute attribute = task.XmlDocument.CreateAttribute("Text");
Evaluation\Expander_Tests.cs (5)
1507XmlAttribute xmlattribute = (new XmlDocument()).CreateAttribute("dummy"); 1533XmlAttribute xmlattribute = (new XmlDocument()).CreateAttribute("dummy"); 1555XmlAttribute xmlattribute = (new XmlDocument()).CreateAttribute("dummy"); 1604XmlAttribute xmlattribute = (new XmlDocument()).CreateAttribute("dummy"); 1636XmlAttribute xmlattribute = (new XmlDocument()).CreateAttribute("dummy");
Microsoft.Build.Tasks.Core (95)
BootstrapperUtil\BootstrapperBuilder.cs (63)
557XmlAttribute cultureAttribute = (XmlAttribute)rootNode?.Attributes.GetNamedItem("Culture"); 568var newAttribute = (XmlAttribute)rootNode.OwnerDocument.ImportNode(cultureAttribute, false); 671var relatedProductAttribute = (XmlAttribute)(relatedProductNode.Attributes.GetNamedItem("Code")); 717XmlAttribute relatedProductAttribute = (XmlAttribute)(relatedProduct.Attributes.GetNamedItem("Code")); 898var productCodeAttribute = (XmlAttribute)(baseNode.Attributes.GetNamedItem("ProductCode")); 988foreach (XmlAttribute attribute in langElement.Attributes) 990mergeElement.Attributes.Append((XmlAttribute)(mergeElement.OwnerDocument.ImportNode(attribute, false))); 993foreach (XmlAttribute attribute in baseElement.Attributes) 995var convertedAttribute = (XmlAttribute)(mergeElement.OwnerDocument.ImportNode(attribute, false)); 1016var cultureAttribute = (XmlAttribute)mergeElement.Attributes.GetNamedItem("Culture"); 1133XmlAttribute attrib = targetNode.Attributes[attributeName]; 1143XmlAttribute attribute = targetNode.OwnerDocument.CreateAttribute(attributeName); 1148private static void MergeAttribute(XmlNode targetNode, XmlAttribute attribute) 1150var targetAttribute = (XmlAttribute)(targetNode.Attributes.GetNamedItem(attribute.Name)); 1164var nameAttribute = (XmlAttribute)(packageFileNode.Attributes.GetNamedItem("Name")); 1171XmlAttribute sourcePathAttribute = packageFilesNode.OwnerDocument.CreateAttribute("SourcePath"); 1175XmlAttribute targetPathAttribute = packageFilesNode.OwnerDocument.CreateAttribute("TargetPath"); 1181XmlAttribute oldNameAttribute = packageFilesNode.OwnerDocument.CreateAttribute("OldName"); 1240XmlAttribute keyAttribute = (XmlAttribute)(nextNode.Attributes.GetNamedItem(strSubNodeKey)); 1274foreach (XmlAttribute attribute in langNode.Attributes) 1278foreach (XmlAttribute attribute in baseNode.Attributes) 1307var attribute = (XmlAttribute)(currentNode.Attributes.GetNamedItem("PackageFile")); 1312var targetPathAttribute = (XmlAttribute)(packageFileNode.Attributes.GetNamedItem("TargetPath")); 1347var attribute = (XmlAttribute)(currentNode.Attributes.GetNamedItem("String")); 1407XmlAttribute eulaAttribute = node.Attributes[EULA_ATTRIBUTE]; 1412var packageFileSource = (XmlAttribute)(packageFileNode.Attributes.GetNamedItem("SourcePath")); 1413var packageFileDestination = (XmlAttribute)(packageFileNode.Attributes.GetNamedItem("TargetPath")); 1414var packageFileName = (XmlAttribute)(packageFileNode.Attributes.GetNamedItem("Name")); 1415var packageFileCopy = (XmlAttribute)(packageFileNode.Attributes.GetNamedItem("CopyOnBuild")); 1513XmlAttribute sizeAttribute = packageFileNode.OwnerDocument.CreateAttribute("Size"); 1563var sourceAttribute = (XmlAttribute)(node.Attributes.GetNamedItem("ProductCode")); 1575var attribute = (XmlAttribute)(node.Attributes.GetNamedItem(strAttributeName)); 1641var attribute = (XmlAttribute)(node.Attributes.GetNamedItem(attributeName)); 1771XmlAttribute resourceIdAttribute = (XmlAttribute)stringNode.Attributes.GetNamedItem("Name"); 1904XmlAttribute oldNameAttribute = (XmlAttribute)(sourceNode.Attributes.GetNamedItem(sourceOldName)); 1905XmlAttribute newNameAttribute = (XmlAttribute)(sourceNode.Attributes.GetNamedItem(sourceNewName)); 1942XmlAttribute attrib = node.OwnerDocument.CreateAttribute(attributeName); 2073XmlAttribute homesiteAttribute = packageFileNode.Attributes[HOMESITE_ATTRIBUTE]; 2086XmlAttribute hashAttribute = packageFileNode.Attributes[HASH_ATTRIBUTE]; 2087XmlAttribute publicKeyAttribute = packageFileNode.Attributes[PUBLICKEY_ATTRIBUTE];
GenerateApplicationManifest.cs (2)
466var attr = (XmlAttribute)(node.Attributes.GetNamedItem("level"));
ManifestUtil\DeployManifest.cs (1)
222XmlAttribute nameattr = fileListNode?.Attributes["InstallableFramework"];
ManifestUtil\Manifest.cs (4)
407XmlNode publicKeyTokenNode = ((XmlAttribute)codeBaseNode).OwnerElement.SelectSingleNode(XPaths.dependencyPublicKeyTokenAttribute, nsmgr); 419XmlNode hashNode = ((XmlAttribute)codeBaseNode).OwnerElement.SelectSingleNode(XPaths.hashElement, nsmgr); 426XmlAttribute sizeAttribute = ((XmlAttribute)codeBaseNode).OwnerElement.Attributes[XmlUtil.TrimPrefix(XPaths.fileSizeAttribute)];
ManifestUtil\mansign2.cs (1)
703foreach (XmlAttribute attribute in principal.Attributes)
ManifestUtil\TrustInfo.cs (18)
41XmlAttribute sameSiteAttribute = (XmlAttribute)permissionSetElement.Attributes.GetNamedItem(XmlUtil.TrimPrefix(XPaths.sameSiteAttribute)); 71var unrestrictedAttribute = (XmlAttribute)permissionSetElement.Attributes.GetNamedItem(XmlUtil.TrimPrefix(XPaths.unrestrictedAttribute)); 93var unrestrictedAttribute = (XmlAttribute)permissionSetElement.Attributes.GetNamedItem(XmlUtil.TrimPrefix(XPaths.unrestrictedAttribute)); 108var idAttribute = (XmlAttribute)permissionSetElement.Attributes.GetNamedItem(XmlUtil.TrimPrefix(XPaths.idAttribute)); 134XmlAttribute idrefAttribute = (XmlAttribute)permissionSetElement.Attributes.GetNamedItem(XmlUtil.TrimPrefix(XPaths.permissionSetReferenceAttribute)); 300XmlAttribute levelAttribute = document.CreateAttribute("level"); 306XmlAttribute uiAccessAttribute = document.CreateAttribute("uiAccess"); 338XmlAttribute unrestrictedAttribute = document.CreateAttribute(XmlUtil.TrimPrefix(XPaths.unrestrictedAttribute), XmlNamespaces.asmv2); 498XmlAttribute unrestrictedAttribute = (XmlAttribute)psElement.Attributes.GetNamedItem(XmlUtil.TrimPrefix(XPaths.unrestrictedAttribute)); 510XmlAttribute sameSiteAttribute = (XmlAttribute)psElement.Attributes.GetNamedItem(XmlUtil.TrimPrefix(XPaths.sameSiteAttribute)); 747XmlAttribute unrestrictedAttribute = document.CreateAttribute(XmlUtil.TrimPrefix(XPaths.unrestrictedAttribute), XmlNamespaces.asmv2);
ManifestUtil\XmlUtil.cs (2)
41foreach (XmlAttribute attribute in element.Attributes) 43XmlAttribute newAttribute = document.CreateAttribute(attribute.Name);
XmlPeek.cs (2)
195XmlAttribute prefix = xn.Attributes?[prefixAttr]; 202XmlAttribute uri = xn.Attributes[uriAttr];
XmlPoke.cs (2)
182XmlAttribute prefix = xn.Attributes?[prefixAttr]; 189XmlAttribute uri = xn.Attributes[uriAttr];
Microsoft.Build.Tasks.UnitTests (11)
XmlPoke_Tests.cs (11)
57List<XmlAttribute> nodes = xmlDocument.SelectNodes(query, ns)?.Cast<XmlAttribute>().ToList(); 74List<XmlAttribute> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlAttribute>().ToList(); 91List<XmlAttribute> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlAttribute>().ToList(); 132List<XmlAttribute> nodes = xmlDocument.SelectNodes(string.Format(queryTemplate, value))?.Cast<XmlAttribute>().ToList(); 213List<XmlAttribute> nodes = xmlDocument.SelectNodes(query)?.Cast<XmlAttribute>().ToList(); 214foreach (var node in nodes)
Microsoft.Build.Utilities.Core (2)
SDKManifest.cs (2)
370foreach (XmlAttribute attribute in attributes.OfType<XmlAttribute>())
Microsoft.Web.Xdt.Extensions (4)
InsertOrAppendAttribute.cs (4)
90XmlAttribute transformAtt = null; 92foreach (XmlAttribute att in TransformNode.Attributes) 109foreach (XmlAttribute att in targetNode.Attributes) 134var attribute = targetNode.OwnerDocument.CreateAttribute(AttributeName);
netstandard (1)
netstandard.cs (1)
2454[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlAttribute))]
PresentationBuildTasks (6)
Microsoft\Build\Tasks\Windows\GenerateTemporaryTargetAssembly.cs (6)
737XmlAttribute attrInclude = xmlProjectDoc.CreateAttribute(INCLUDE_ATTR_NAME); 813XmlAttribute xmlAttribute = root.Attributes[i]; 887XmlAttribute projectAttribute = xmlProjectDoc.CreateAttribute("Project"); 889XmlAttribute sdkAttributeProps = xmlProjectDoc.CreateAttribute("Sdk"); 896XmlAttribute sdkVersionAttributeProps = xmlProjectDoc.CreateAttribute("Version"); 903XmlAttribute sdkVersionAttributeProps = xmlProjectDoc.CreateAttribute("MinimumVersion");
PresentationFramework (11)
MS\Internal\Annotations\XmlElementCollection.cs (2)
208XmlAttribute attr = null; 230attr = current as XmlAttribute;
MS\Internal\Controls\StickyNote\StickyNoteAnnotations.cs (9)
179XmlAttribute node; 219node = (XmlAttribute)sncAnnotation.FindData(XmlToken.Height); 234node = (XmlAttribute)sncAnnotation.FindData(XmlToken.Width); 249node = (XmlAttribute)sncAnnotation.FindData(XmlToken.IsExpanded); 264node = (XmlAttribute)sncAnnotation.FindData(XmlToken.ZOrder); 277node = (XmlAttribute)sncAnnotation.FindData(XmlToken.Left); 297node = (XmlAttribute)sncAnnotation.FindData(XmlToken.Top); 308node = (XmlAttribute)sncAnnotation.FindData(XmlToken.XOffset); 317node = (XmlAttribute)sncAnnotation.FindData(XmlToken.YOffset);
ReachFramework (2)
PrintConfig\PrintSchemaShim.cs (1)
134XmlAttribute nameAttr = ticket.XmlDoc.CreateAttribute("name");
PrintConfig\PrtTicket_Editor.cs (1)
159foreach (XmlAttribute attr in root.Attributes)
System.Configuration.ConfigurationManager (4)
System\Configuration\ConfigXmlDocument.cs (1)
93public override XmlAttribute CreateAttribute(string prefix, string localName, string namespaceUri)
System\Configuration\ErrorInfoXmlDocument.cs (1)
86public override XmlAttribute CreateAttribute(string prefix, string localName, string namespaceUri)
System\Configuration\RuntimeConfigurationRecord.cs (1)
126foreach (XmlAttribute attribute in attributes)
System\Configuration\SingleTagSectionHandler.cs (1)
40foreach (XmlAttribute attribute in section.Attributes)
System.Data.Common (50)
System\Data\DataSet.cs (3)
1718XmlAttribute attr = topNode.SetAttributeNode(reader.LocalName, reader.NamespaceURI); 2130XmlAttribute attr = topNode.SetAttributeNode(reader.LocalName, reader.NamespaceURI); 2669XmlAttribute attr = topNode.SetAttributeNode(reader.LocalName, reader.NamespaceURI);
System\Data\DataTable.cs (2)
5826XmlAttribute attr = topNode.SetAttributeNode(reader.LocalName, reader.NamespaceURI); 6094XmlAttribute attr = topNode.SetAttributeNode(reader.LocalName, reader.NamespaceURI);
System\Data\XmlDataLoader.cs (4)
243if (node is XmlAttribute) 244ownerNode = ((XmlAttribute)node).OwnerElement!; 451foreach (XmlAttribute attr in rowElement.Attributes) 714foreach (XmlAttribute attr in _topMostNode.Attributes)
System\Data\XMLSchema.cs (8)
259internal static void SetProperties(object instance, XmlAttribute[]? attrs) 320private static void SetExtProperties(object instance, XmlAttribute[]? attrs) 358private void HandleColumnExpression(object instance, XmlAttribute[]? attrs) 384XmlAttribute[]? nodeAttributes = node.UnhandledAttributes; 1947internal void HandleSimpleTypeSimpleContentColumn(XmlSchemaSimpleType typeNode, string strType, DataTable table, bool isBase, XmlAttribute[]? attrs, bool isNillable) 2084internal void HandleSimpleContentColumn(string strType, DataTable table, bool isBase, XmlAttribute[]? attrs, bool isNillable) 2799XmlAttribute[]? attribs = node.UnhandledAttributes; 2804XmlAttribute attrib = attribs[i];
System\Data\XmlToDatasetMap.cs (1)
441XmlNode? nodeRegion = (node.NodeType == XmlNodeType.Attribute) ? ((XmlAttribute)node).OwnerElement : node.ParentNode;
System\Xml\DataPointer.cs (2)
299XmlNode? n = ((XmlAttribute)_node).OwnerElement; 625return !((XmlAttribute)_node).Specified;
System\Xml\DataSetMappper.cs (3)
111foreach (XmlAttribute a in elem.Attributes) 226node = ((XmlAttribute)node).OwnerElement; 256XmlAttribute attr = rowElem.Attributes[iAttr];
System\Xml\XmlDataDocument.cs (10)
49internal XmlAttribute _attrXml; 746XmlAttribute attr = CreateAttribute(XSI, Keywords.XSI_NIL, Keywords.XSINS); 1028newNode.Attributes!.Append((XmlAttribute)CloneTreeInternal(dp)); 1472XmlAttribute? attr = rowElement.GetAttributeNode(XSI_NIL); 1488XmlAttribute? attr = rowElement.GetAttributeNode(XSI_NIL); 1502foreach (XmlAttribute attr in rowElement.Attributes) 1558XmlAttribute? attr = e.GetAttributeNode(XSI_NIL); 2561foreach (XmlAttribute attr in rowElement.Attributes) 2683XmlAttribute? attr = node as XmlAttribute;
System\Xml\XPathNodePointer.cs (17)
422curNode = ((XmlAttribute)curNode).OwnerElement!; 526foreach (XmlAttribute attr in _node.Attributes!) 652foreach (XmlAttribute attr in attrs) 663XmlAttributeCollection attrs = ((XmlAttribute)_node).OwnerElement!.Attributes; 665foreach (XmlAttribute attr in attrs) 997n = ((XmlAttribute)_node).OwnerElement; 1019return ((XmlAttribute)node).OwnerElement; 1071XmlNode? parent = ((curNode.NodeType == XmlNodeType.Attribute) ? (((XmlAttribute)curNode).OwnerElement) : (curNode.ParentNode)); 1179curNode1 = ((curNode1.NodeType == XmlNodeType.Attribute) ? (((XmlAttribute)curNode1).OwnerElement) : (curNode1.ParentNode)); 1189curNode2 = ((curNode2.NodeType == XmlNodeType.Attribute) ? (((XmlAttribute)curNode2).OwnerElement) : (curNode2.ParentNode)); 1322XmlAttribute? attr; 1371node = ((XmlAttribute)node).OwnerElement; 1398XmlAttribute? attr; 1447private bool MoveToNextNamespace(XmlBoundElement? be, DataColumn? col, XmlAttribute? curAttr) 1454XmlAttribute? attr = null; 1594XmlAttribute attr = (XmlAttribute)(_node);
System.Private.DataContractSerialization (22)
System\Runtime\Serialization\ExtensionDataObject.cs (2)
218private IList<XmlAttribute>? _xmlAttributes; 227internal IList<XmlAttribute>? XmlAttributes
System\Runtime\Serialization\ExtensionDataReader.cs (1)
619XmlAttribute xmlAttr = dataNode.OwnerDocument.CreateAttribute(a.prefix, a.localName!, a.ns);
System\Runtime\Serialization\SchemaExporter.cs (7)
222XmlAttribute emitDefaultValueAttribute = XmlDoc.CreateAttribute(Globals.EmitDefaultValueAttribute); 237XmlAttribute nameAttribute = xmlDoc.CreateAttribute(Globals.ActualTypeNameAttribute); 241XmlAttribute nsAttribute = xmlDoc.CreateAttribute(Globals.ActualTypeNamespaceAttribute); 296XmlAttribute nameAttribute = XmlDoc.CreateAttribute(Globals.GenericNameAttribute); 301XmlAttribute nsAttribute = XmlDoc.CreateAttribute(Globals.GenericNamespaceAttribute); 317XmlAttribute nestedLevelAttribute = XmlDoc.CreateAttribute(Globals.GenericParameterNestedLevelAttribute); 327XmlAttribute typeNestedLevelsAttribute = XmlDoc.CreateAttribute(Globals.GenericParameterNestedLevelAttribute);
System\Runtime\Serialization\XmlObjectSerializerReadContext.cs (10)
906List<XmlAttribute>? xmlAttributes = null; 917xmlAttributes ??= new List<XmlAttribute>(); 918xmlAttributes.Add((XmlAttribute)Document.ReadNode(xmlReader.UnderlyingReader)!); 953List<XmlAttribute>? xmlAttributes = null; 956xmlAttributes = new List<XmlAttribute>(); 1040internal XmlReaderDelegator CreateReaderOverChildNodes(IList<XmlAttribute>? xmlAttributes, IList<XmlNode> xmlChildNodes) 1049internal static XmlElement CreateWrapperXmlElement(XmlDocument document, IList<XmlAttribute>? xmlAttributes, IList<XmlNode>? xmlChildNodes, string? prefix, string? localName, string? ns) 1058wrapperElement.Attributes.Append((XmlAttribute)xmlAttributes[i]); 1071private XmlAttribute AddNamespaceDeclaration(string? prefix, string? ns) 1073XmlAttribute attribute = string.IsNullOrEmpty(prefix) ?
System\Runtime\Serialization\XmlObjectSerializerWriteContext.cs (2)
826IList<XmlAttribute>? xmlAttributes = dataNode.XmlAttributes; 829foreach (XmlAttribute attribute in xmlAttributes)
System.Private.Xml (260)
System\Xml\Dom\DocumentSchemaValidator.cs (9)
145partialValidationType = FindSchemaInfo((nodeToValidate as XmlAttribute)!); 186XmlAttribute attr = attrs[i]; 211node = ((XmlAttribute)node).OwnerElement; 290XmlAttribute attr = (_currentNode as XmlAttribute)!; 327XmlAttribute? attr; 388XmlAttribute? attr; 549private XmlSchemaAttribute? FindSchemaInfo(XmlAttribute attributeToValidate) 676XmlAttribute? attr;
System\Xml\Dom\DocumentXmlWriter.cs (12)
207XmlAttribute attr = _document.CreateAttribute(prefix, localName, ns); 215XmlAttribute? attr = _write as XmlAttribute; 248XmlAttribute attr; 265XmlAttribute? attr = _write as XmlAttribute; 437XmlAttribute? attr = _fragment[i] as XmlAttribute; 441&& ((XmlAttribute)attrs.nodes[offset]).Specified) 448XmlAttribute? attr = _fragment[i] as XmlAttribute; 506private void AddAttribute(XmlAttribute attr, XmlNode? parent)
System\Xml\Dom\DocumentXPathNavigator.cs (33)
51if (((XmlAttribute)node).IsNamespace) 114if (_source is XmlAttribute attribute 133if (((XmlAttribute)_source).IsNamespace) 153if (_source is XmlAttribute attribute 273XmlAttribute attribute = attributes[i]; 297XmlAttribute attribute = attributes[i]; 325XmlAttribute attribute = attributes[i]; 339if (!(_source is XmlAttribute attribute) 369if (node is XmlAttribute attribute) 396XmlAttribute? attribute = element.GetAttributeNode(localName, namespaceUri); 440XmlAttribute? attribute = element.GetAttributeNode(localName, namespaceUri); 491XmlAttribute attribute = attributes[index]; 530XmlAttribute attribute = attributes[i]; 566if (!(_source is XmlAttribute attribute) 644XmlAttribute attribute = attributes[i]; 685XmlAttribute? attribute = current.GetAttributeNode(localName, namespaceUri); 844if (_source is XmlAttribute attribute) 864if (!(_source is XmlAttribute attribute)) 984following = ((XmlAttribute)following).OwnerElement; 1065following = ((XmlAttribute)following).OwnerElement; 1284if (node is XmlAttribute attribute) 1316XmlElement? element = ((XmlAttribute)node1).OwnerElement; 1323XmlAttribute attribute = attributes[i]; 1665XmlAttribute attribute = (XmlAttribute)node; 1724XmlAttribute attribute = (XmlAttribute)node; 1760private static void DeleteAttribute(XmlAttribute attribute, int index) 1819XmlAttribute attribute = attributes[j]; 1836if (node is XmlAttribute attribute) 1850private static bool ResetAttributePosition(XmlAttribute attribute, [NotNullWhen(true)] XmlAttributeCollection? attributes, out int index) 1867private static bool CheckAttributePosition(XmlAttribute attribute, [NotNullWhen(true)] out XmlAttributeCollection? attributes, int index) 2080if (!(bottom is XmlAttribute attribute))
System\Xml\Dom\XmlAttribute.cs (1)
56XmlAttribute attr = doc.CreateAttribute(Prefix, LocalName, NamespaceURI);
System\Xml\Dom\XmlAttributeCollection.cs (50)
19public XmlAttribute this[int i] 25return (XmlAttribute)nodes[i]; 36public XmlAttribute? this[string name] 44XmlAttribute node = (XmlAttribute)nodes[i]; 59public XmlAttribute? this[string localName, string? namespaceURI] 67XmlAttribute node = (XmlAttribute)nodes[i]; 81internal int FindNodeOffset(XmlAttribute node) 85XmlAttribute tmp = (XmlAttribute)nodes[i]; 98internal int FindNodeOffsetNS(XmlAttribute node) 102XmlAttribute tmp = (XmlAttribute)nodes[i]; 120if (!(node is XmlAttribute)) 126return InternalAppendAttribute((XmlAttribute)node); 137public XmlAttribute Prepend(XmlAttribute node) 152public XmlAttribute Append(XmlAttribute node) 176public XmlAttribute InsertBefore(XmlAttribute newNode, XmlAttribute? refNode) 205public XmlAttribute InsertAfter(XmlAttribute newNode, XmlAttribute? refNode) 234public XmlAttribute? Remove(XmlAttribute? node) 250public XmlAttribute? RemoveAt(int i) 255return (XmlAttribute)RemoveNodeAt(i); 292public void CopyTo(XmlAttribute[] array, int index) 295array[index] = (XmlAttribute)(((XmlNode)nodes[i]).CloneNode(true)); 301RemoveDuplicateAttribute((XmlAttribute)node); 303Debug.Assert(retNode is XmlAttribute); 304InsertParentIntoElementIdAttrMap((XmlAttribute)node); 311InsertParentIntoElementIdAttrMap((XmlAttribute)node); 319Debug.Assert(retNode is XmlAttribute); 320RemoveParentFromElementIdAttrMap((XmlAttribute)retNode); 322XmlAttribute? defattr = parent.OwnerDocument!.GetDefaultAttribute((XmlElement)parent, retNode.Prefix, retNode.LocalName, retNode.NamespaceURI); 329internal static void Detach(XmlAttribute attr) 335internal void InsertParentIntoElementIdAttrMap(XmlAttribute attr) 352internal void RemoveParentFromElementIdAttrMap(XmlAttribute attr) 371internal int RemoveDuplicateAttribute(XmlAttribute attr) 376XmlAttribute at = (XmlAttribute)nodes[ind]; 415internal XmlAttribute InternalAppendAttribute(XmlAttribute node) 421Debug.Assert(retNode is XmlAttribute); 422InsertParentIntoElementIdAttrMap((XmlAttribute)node); 423return (XmlAttribute)retNode;
System\Xml\Dom\XmlDocument.cs (12)
126private XmlAttribute? _namespaceXml; 600public XmlAttribute CreateAttribute(string name) 685XmlAttribute defattr = PrepareDefaultAttribute(attdef, attrPrefix, attrLocalname, attrNamespaceURI); 710private XmlAttribute PrepareDefaultAttribute(SchemaAttDef attdef, string attrPrefix, string attrLocalname, string attrNamespaceURI) 713XmlAttribute defattr = CreateDefaultAttribute(attrPrefix, attrLocalname, attrNamespaceURI); 907public XmlAttribute CreateAttribute(string qualifiedName, string? namespaceURI) 977Debug.Assert(((XmlAttribute)node).Specified); 1060public virtual XmlAttribute CreateAttribute(string? prefix, string localName, string? namespaceURI) 1065protected internal virtual XmlAttribute CreateDefaultAttribute(string? prefix, string localName, string? namespaceURI) 1666internal XmlAttribute? GetDefaultAttribute(XmlElement elem, string attrPrefix, string attrLocalname, string attrNamespaceURI) 1684XmlAttribute defattr = PrepareDefaultAttribute(attdef, attrPrefix, attrLocalname, attrNamespaceURI); 1816internal XmlAttribute NamespaceXml
System\Xml\Dom\XmlElement.cs (21)
65foreach (XmlAttribute attr in Attributes) 67XmlAttribute newAttr = (XmlAttribute)(attr.CloneNode(true)); 270XmlAttribute? attr = GetAttributeNode(name); 281XmlAttribute? attr = GetAttributeNode(name); 302public virtual XmlAttribute? GetAttributeNode(string name) 310public virtual XmlAttribute? SetAttributeNode(XmlAttribute newAttr) 315return (XmlAttribute)Attributes.SetNamedItem(newAttr); 319public virtual XmlAttribute? RemoveAttributeNode(XmlAttribute oldAttr) 322return (XmlAttribute?)Attributes.Remove(oldAttr); 340XmlAttribute? attr = GetAttributeNode(localName, namespaceURI); 352XmlAttribute? attr = GetAttributeNode(localName, namespaceURI); 374public virtual XmlAttribute? GetAttributeNode(string localName, string? namespaceURI) 382public virtual XmlAttribute SetAttributeNode(string localName, string? namespaceURI) 384XmlAttribute? attr = GetAttributeNode(localName, namespaceURI); 395public virtual XmlAttribute? RemoveAttributeNode(string localName, string? namespaceURI) 399XmlAttribute? attr = GetAttributeNode(localName, namespaceURI); 517XmlAttribute attr = attrs[i]; 641XmlAttribute? attr = GetAttributeNode(localName, ns);
System\Xml\Dom\XmlLoader.cs (11)
118XmlAttribute attr = LoadAttributeNode(); 249private XmlAttribute LoadAttributeNode() 259XmlAttribute attr = _doc!.CreateAttribute(r.Prefix, r.LocalName, r.NamespaceURI); 299private XmlAttribute LoadDefaultAttribute() 304XmlAttribute attr = _doc!.CreateDefaultAttribute(r.Prefix, r.LocalName, r.NamespaceURI); 475XmlAttribute attr = LoadAttributeNodeDirect(); 564private XmlAttribute LoadAttributeNodeDirect() 567XmlAttribute attr; 699foreach (XmlAttribute attr in element.Attributes) 796internal void LoadInnerXmlAttribute(XmlAttribute node, string innerxmltext) 812XmlAttribute attr = attrs[i];
System\Xml\Dom\XmlNamedNodemap.cs (2)
146oldParent = ((XmlAttribute)node).OwnerElement; 213oldParent = ((XmlAttribute)node).OwnerElement;
System\Xml\Dom\XmlNode.cs (6)
866n = ((XmlAttribute)n).OwnerElement; 1101XmlAttribute attr = attrs[iAttr]; 1115XmlAttribute attr = attrs[iAttr]; 1138node = ((XmlAttribute)node).OwnerElement; 1184XmlAttribute attr = attrs[iAttr]; 1217node = ((XmlAttribute)node).OwnerElement;
System\Xml\Dom\XmlNodeReader.cs (12)
307return !((XmlAttribute)_curNode).Specified; 481XmlAttribute? attr = elem.GetAttributeNode(name); 504XmlAttribute? attr = elem.GetAttributeNode(name, ns); 624_curNode = ((XmlAttribute)_curNode).OwnerElement!; 639XmlAttribute? attr; 690XmlAttribute? attr; 880XmlAttribute? attr = elem.GetAttributeNode(attrName); 889node = ((XmlAttribute)node).OwnerElement; 951XmlAttribute a = attrs[i]; 975node = ((XmlAttribute)node).OwnerElement; 1003XmlAttribute a = attrs[i]; 1028node = ((XmlAttribute)node).OwnerElement;
System\Xml\Schema\Parser.cs (8)
356XmlAttribute attr = LoadAttributeNode(); 364XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, _namespaceManager!.LookupNamespace(r.Prefix)!); 372XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, elemNS); 384XmlAttribute attr = CreateXmlNsAttribute(r.Prefix, _namespaceManager!.LookupNamespace(r.Prefix)!); 400private XmlAttribute CreateXmlNsAttribute(string prefix, string value) 402XmlAttribute attr; 416private XmlAttribute LoadAttributeNode() 422XmlAttribute attr = _dummyDocument.CreateAttribute(r.Prefix, r.LocalName, r.NamespaceURI);
System\Xml\Schema\XmlSchema.cs (3)
30private XmlAttribute[]? _moreAttributes; 346public XmlAttribute[]? UnhandledAttributes 505internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
System\Xml\Schema\XmlSchemaAnnotated.cs (3)
13private XmlAttribute[]? _moreAttributes; 30public XmlAttribute[]? UnhandledAttributes 43internal override void SetUnhandledAttributes(XmlAttribute[]? moreAttributes)
System\Xml\Schema\XmlSchemaAnnotation.cs (3)
13private XmlAttribute[]? _moreAttributes; 30public XmlAttribute[]? UnhandledAttributes 43internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
System\Xml\Schema\XmlSchemaExternal.cs (3)
16private XmlAttribute[]? _moreAttributes; 41public XmlAttribute[]? UnhandledAttributes 61internal override void SetUnhandledAttributes(XmlAttribute[] moreAttributes)
System\Xml\Schema\XmlSchemaObject.cs (1)
66internal virtual void SetUnhandledAttributes(XmlAttribute[] moreAttributes) { }
System\Xml\Schema\XsdBuilder.cs (3)
674private readonly List<XmlAttribute> _unhandledAttributes = new List<XmlAttribute>(); 758XmlAttribute attribute = new XmlAttribute(prefix, name, ns, _schema.Document);
System\Xml\Serialization\_Events.cs (3)
17private readonly XmlAttribute _attr; 23internal XmlAttributeEventArgs(XmlAttribute attr, int lineNumber, int linePosition, object? o, string? qnames) 37public XmlAttribute Attr
System\Xml\Serialization\ImportContext.cs (3)
435XmlAttribute[]? attrs = (XmlAttribute[]?)((XmlSchemaAnnotated)item).UnhandledAttributes; 441XmlAttribute attribute = attrs[i];
System\Xml\Serialization\ReflectionXmlSerializationReader.cs (2)
1955var attr = (Document.ReadNode(Reader) as XmlAttribute)!;
System\Xml\Serialization\SchemaObjectWriter.cs (36)
20XmlAttribute a1 = (XmlAttribute)o1!; 21XmlAttribute a2 = (XmlAttribute)o2!; 203private void WriteAttribute(XmlAttribute a) 211private void WriteAttributes(XmlAttribute[]? a) 222XmlAttribute attribute = (XmlAttribute)attrs[i]!; 302WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 496WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 561WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 591WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 623WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 638WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 724WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 749WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 767WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 781WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 816WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 853WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 872WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 888WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 908WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 927WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 962WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1015WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1035WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1078WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1090WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1115WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1137WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1154WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1167WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1213WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1224WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes); 1260WriteAttributes((XmlAttribute[]?)o.@UnhandledAttributes);
System\Xml\Serialization\Types.cs (2)
858if (type == typeof(XmlAttribute)) 872else if (type.IsAssignableFrom(typeof(XmlAttribute)))
System\Xml\Serialization\XmlSchemaImporter.cs (1)
1456mapping.TypeDesc = Scope.GetTypeDesc(typeof(XmlAttribute));
System\Xml\Serialization\XmlSchemas.cs (1)
307foreach (XmlAttribute a in e.UnhandledAttributes)
System\Xml\Serialization\XmlSerializationReader.cs (12)
788protected void ParseWsdlArrayType(XmlAttribute attr) 1165protected void UnknownAttribute(object? o, XmlAttribute attr) 1170protected void UnknownAttribute(object? o, XmlAttribute attr, string? qnames) 1243UnknownAttribute(o, (XmlAttribute)unknownNode, qnames); 1873XmlAttribute attr = Document.CreateAttribute(elemName, elemNs); 1898XmlAttribute xmlAttribute = (XmlAttribute)Document.ReadNode(_r)!; 1910XmlAttribute xsiTypeAttribute = Document.CreateAttribute(_typeID, _instanceNsID); 3746Writer.Write(typeof(XmlAttribute).FullName); 3749Writer.Write(typeof(XmlAttribute).FullName); 3798Writer.Write(typeof(XmlAttribute).FullName); 3803Writer.Write(typeof(XmlAttribute).FullName);
System\Xml\Serialization\XmlSerializationReaderILGen.cs (4)
1981LocalBuilder localAttr = ilg.DeclareOrGetLocal(typeof(XmlAttribute), "attr"); 2068if (attrLoc.LocalType == typeof(XmlAttribute)) 2074ilg.IsInst(typeof(XmlAttribute)); 2078ilg.ConvertValue(attrLoc.LocalType, typeof(XmlAttribute));
System\Xml\Serialization\XmlSerializationWriter.cs (3)
780if (typeof(XmlAttribute).IsAssignableFrom(node.GetType())) 926XmlAttribute? attr = node as XmlAttribute;
System.Security.Cryptography.Xml (61)
System\Security\Cryptography\Xml\AncestralNamespaceContextManager.cs (10)
23protected XmlAttribute? GetNearestRenderedNamespaceWithMatchingPrefix(string nsPrefix, out int depth) 25XmlAttribute? attr; 38protected XmlAttribute? GetNearestUnrenderedNamespaceWithMatchingPrefix(string nsPrefix, out int depth) 40XmlAttribute? attr; 63internal abstract void TrackNamespaceNode(XmlAttribute attr, SortedList nsListToRender, Hashtable nsLocallyDeclared); 64internal abstract void TrackXmlNamespaceNode(XmlAttribute attr, SortedList nsListToRender, SortedList attrListToRender, Hashtable nsLocallyDeclared); 73AddUnrendered((XmlAttribute)attr); 81AddRendered((XmlAttribute)attr); 85internal void AddRendered(XmlAttribute attr) 90internal void AddUnrendered(XmlAttribute attr)
System\Security\Cryptography\Xml\C14NAncestralNamespaceContextManager.cs (12)
19if (Utils.HasNamespacePrefix((XmlAttribute)a, nsPrefix)) 24if (((XmlAttribute)a).LocalName.Equals(nsPrefix)) 29XmlAttribute? local = (XmlAttribute?)nsLocallyDeclared[nsPrefix]; 30XmlAttribute? rAncestral = GetNearestRenderedNamespaceWithMatchingPrefix(nsPrefix, out rDepth); 45XmlAttribute? uAncestral = GetNearestUnrenderedNamespaceWithMatchingPrefix(nsPrefix, out uDepth); 58XmlAttribute? attrib; 63attrib = (XmlAttribute)a; 65XmlAttribute? rAncestral = GetNearestRenderedNamespaceWithMatchingPrefix(Utils.GetNamespacePrefix(attrib), out rDepth); 80attrib = (XmlAttribute)a; 87internal override void TrackNamespaceNode(XmlAttribute attr, SortedList nsListToRender, Hashtable nsLocallyDeclared) 92internal override void TrackXmlNamespaceNode(XmlAttribute attr, SortedList nsListToRender, SortedList attrListToRender, Hashtable nsLocallyDeclared)
System\Security\Cryptography\Xml\CanonicalXmlDocument.cs (2)
69public override XmlAttribute CreateAttribute(string? prefix, string localName, string? namespaceURI) 74protected override XmlAttribute CreateDefaultAttribute(string? prefix, string localName, string? namespaceURI)
System\Security\Cryptography\Xml\CanonicalXmlElement.cs (6)
36foreach (XmlAttribute attr in attrList) 59XmlAttribute nsattrib = (XmlAttribute)OwnerDocument.CreateAttribute(name); 108foreach (XmlAttribute attr in attrList) 131XmlAttribute nsattrib = (XmlAttribute)OwnerDocument.CreateAttribute(name);
System\Security\Cryptography\Xml\ExcAncestralNamespaceContextManager.cs (9)
20private bool HasNonRedundantInclusivePrefix(XmlAttribute attr) 31if (Utils.HasNamespacePrefix((XmlAttribute)a, nsPrefix)) 36XmlAttribute? local = (XmlAttribute?)nsLocallyDeclared[nsPrefix]; 37XmlAttribute? rAncestral = GetNearestRenderedNamespaceWithMatchingPrefix(nsPrefix, out rDepth); 50XmlAttribute? uAncestral = GetNearestUnrenderedNamespaceWithMatchingPrefix(nsPrefix, out uDepth); 63string prefix = ((XmlAttribute)attr).Prefix; 69internal override void TrackNamespaceNode(XmlAttribute attr, SortedList nsListToRender, Hashtable nsLocallyDeclared) 77internal override void TrackXmlNamespaceNode(XmlAttribute attr, SortedList nsListToRender, SortedList attrListToRender, Hashtable nsLocallyDeclared)
System\Security\Cryptography\Xml\MyXmlDocument.cs (1)
10protected override XmlAttribute CreateDefaultAttribute(string? prefix, string localName, string? namespaceURI)
System\Security\Cryptography\Xml\NamespaceFrame.cs (6)
19internal void AddRendered(XmlAttribute attr) 24internal XmlAttribute? GetRendered(string nsPrefix) 26return (XmlAttribute?)_rendered[nsPrefix]; 29internal void AddUnrendered(XmlAttribute attr) 34internal XmlAttribute? GetUnrendered(string nsPrefix) 36return (XmlAttribute?)_unrendered[nsPrefix];
System\Security\Cryptography\Xml\SignedXmlDebugLog.cs (1)
550foreach (XmlAttribute propagatedNamespace in namespaces)
System\Security\Cryptography\Xml\Utils.cs (13)
85foreach (XmlAttribute attr in element.Attributes) 124internal static string GetNamespacePrefix(XmlAttribute a) 130internal static bool HasNamespacePrefix(XmlAttribute a, string nsPrefix) 135internal static bool IsNonRedundantNamespaceDecl(XmlAttribute a, XmlAttribute? nearestAncestorWithSamePrefix) 479XmlAttribute nsattrib = (XmlAttribute)elem.OwnerDocument.CreateAttribute(name); 493XmlAttribute nsattrib = (XmlAttribute)elem.OwnerDocument.CreateAttribute(key); 524XmlAttribute nsattrib = elem.OwnerDocument.CreateAttribute(name); 532foreach (XmlAttribute attrib in attribs) 537XmlAttribute nsattrib = elem.OwnerDocument.CreateAttribute("xmlns"); 557XmlAttribute nsattrib = elem.OwnerDocument.CreateAttribute(name);
System\Security\Cryptography\Xml\XmlDsigXPathTransform.cs (1)
59foreach (XmlAttribute attrib in elem.Attributes)
System.ServiceModel.Primitives (3)
System\ServiceModel\Security\WSTrust.cs (3)
234XmlAttribute attr = rstXml.Attributes[i]; 335XmlAttribute attr = rstrXml.Attributes[i]; 768XmlAttribute attr = elem.Attributes[i];
System.Web.Services.Description (917)
System\Web\Services\Description\ServiceDescription.cs (2)
519public System.Xml.XmlAttribute[] ExtensibleAttributes { get; set; } 1234XmlAttribute requiredAttr = element.Attributes["required", ServiceDescription.Namespace];
System\Web\Services\Description\ServiceDescriptionSerializer.cs (915)
40global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 43global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 137global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 140global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 200global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 203global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 366global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 369global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 450global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 453global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 535global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 538global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 701global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 704global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 1281global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1284global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 1650global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1653global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 1713global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1716global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 1800global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1803global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 1856global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1859global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 1912global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1915global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 1968global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 1971global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2031global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 2034global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2088global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 2091global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2166global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2169global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2266global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2269global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2435global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2438global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2490global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2493global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2560global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2563global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2615global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2618global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2715global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2718global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2763global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2766global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2804global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2807global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2852global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2855global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2901global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2904global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2959global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 2962global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 2999global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3002global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3090global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3093global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3132global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3135global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3174global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3177global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3216global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3219global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3258global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3261global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3300global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3303global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3342global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3345global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3384global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3387global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3426global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3429global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3468global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3471global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3510global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3513global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3552global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3555global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3594global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3597global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3685global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3688global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3790global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3793global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3832global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3835global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3903global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3906global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3942global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3945global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 3983global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 3986global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4031global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4034global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4101global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4104global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4153global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4156global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4233global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4236global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4313global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4316global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4364global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4367global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4477global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4480global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4538global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4541global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4579global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4582global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4641global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4644global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4680global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4683global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4720global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@UnhandledAttributes; 4723global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4785global::System.Xml.XmlAttribute[] a = (global::System.Xml.XmlAttribute[])o.@ExtensibleAttributes; 4788global::System.Xml.XmlAttribute ai = (global::System.Xml.XmlAttribute)a[i]; 4861global::System.Xml.XmlAttribute[] a_1 = null; 4886System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 4888a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 4891o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 4895o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 4972o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5000global::System.Xml.XmlAttribute[] a_1 = null; 5017System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 5019a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5022o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5026o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5059o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5087global::System.Xml.XmlAttribute[] a_1 = null; 5107System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 5109a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5112o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5116o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5169o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5377global::System.Xml.XmlAttribute[] a_1 = null; 5398System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 5400a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5403o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5407o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5470o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5498global::System.Xml.XmlAttribute[] a_1 = null; 5515System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 5517a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5520o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5524o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5595o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5623global::System.Xml.XmlAttribute[] a_1 = null; 5639System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 5641a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5644o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5648o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5691o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5879global::System.Xml.XmlAttribute[] a_1 = null; 5895System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 5897a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 5900o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 5904o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 6007o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 6959global::System.Xml.XmlAttribute[] a_1 = null; 6975System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 6977a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 6980o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 6984o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7107o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7643global::System.Xml.XmlAttribute[] a_1 = null; 7660System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 7662a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 7665o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7669o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7702o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7730global::System.Xml.XmlAttribute[] a_1 = null; 7752System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 7754a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 7757o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7761o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7814o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7842global::System.Xml.XmlAttribute[] a_1 = null; 7862System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 7864a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 7867o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7871o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7894o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7922global::System.Xml.XmlAttribute[] a_1 = null; 7942System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 7944a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 7947o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7951o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 7974o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8002global::System.Xml.XmlAttribute[] a_1 = null; 8022System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8024a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8027o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8031o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8054o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8082global::System.Xml.XmlAttribute[] a_1 = null; 8099System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8101a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8104o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8108o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8141o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8169global::System.Xml.XmlAttribute[] a_1 = null; 8193System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8195a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8198o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8202o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8225o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8253global::System.Xml.XmlAttribute[] a_1 = null; 8266System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8268a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 8271o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8275o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8308o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 8339global::System.Xml.XmlAttribute[] a_10 = null; 8378System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8380a_10 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_10, ca_10, typeof(global::System.Xml.XmlAttribute)); a_10[ca_10++] = attr; 8383o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_10, ca_10, typeof(global::System.Xml.XmlAttribute), true); 8387o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_10, ca_10, typeof(global::System.Xml.XmlAttribute), true); 8516o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_10, ca_10, typeof(global::System.Xml.XmlAttribute), true); 8545global::System.Xml.XmlAttribute[] a_3 = null; 8565System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8567a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 8570o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8574o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8621o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8650global::System.Xml.XmlAttribute[] a_3 = null; 8673System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8675a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 8678o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8682o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8705o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8735global::System.Xml.XmlAttribute[] a_3 = null; 8750System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 8752a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 8755o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8759o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8798o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 8986global::System.Xml.XmlAttribute[] a_3 = null; 9005System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9007a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9010o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9014o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9037o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9066global::System.Xml.XmlAttribute[] a_3 = null; 9109System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9111a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9114o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9118o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9145o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9174global::System.Xml.XmlAttribute[] a_3 = null; 9197System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9199a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9202o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9206o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9241o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9270global::System.Xml.XmlAttribute[] a_3 = null; 9295System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9297a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9300o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9305o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9339o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9369global::System.Xml.XmlAttribute[] a_3 = null; 9389System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9391a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9394o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9398o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9545o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9574global::System.Xml.XmlAttribute[] a_3 = null; 9597System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9599a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9602o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9606o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9629o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9658global::System.Xml.XmlAttribute[] a_3 = null; 9681System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9683a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9686o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9690o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9713o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9742global::System.Xml.XmlAttribute[] a_3 = null; 9765System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9767a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9770o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9774o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9797o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9826global::System.Xml.XmlAttribute[] a_3 = null; 9849System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9851a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9854o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9858o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9881o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9910global::System.Xml.XmlAttribute[] a_3 = null; 9933System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 9935a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 9938o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9942o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9965o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 9994global::System.Xml.XmlAttribute[] a_3 = null; 10017System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10019a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10022o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10026o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10049o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10078global::System.Xml.XmlAttribute[] a_3 = null; 10101System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10103a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10106o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10110o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10133o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10162global::System.Xml.XmlAttribute[] a_3 = null; 10185System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10187a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10190o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10194o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10217o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10246global::System.Xml.XmlAttribute[] a_3 = null; 10269System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10271a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10274o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10278o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10301o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10330global::System.Xml.XmlAttribute[] a_3 = null; 10353System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10355a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10358o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10362o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10385o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10414global::System.Xml.XmlAttribute[] a_3 = null; 10437System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10439a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10442o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10446o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10469o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10498global::System.Xml.XmlAttribute[] a_3 = null; 10521System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10523a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10526o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10530o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10553o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10582global::System.Xml.XmlAttribute[] a_3 = null; 10601System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10603a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10606o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10610o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10637o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10706global::System.Xml.XmlAttribute[] a_3 = null; 10774System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10776a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10779o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10783o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10844o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10873global::System.Xml.XmlAttribute[] a_3 = null; 10897System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10899a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10902o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10906o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10943o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 10972global::System.Xml.XmlAttribute[] a_3 = null; 10991System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 10993a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 10996o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11000o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11023o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11052global::System.Xml.XmlAttribute[] a_3 = null; 11072System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11074a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11077o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11081o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11118o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11147global::System.Xml.XmlAttribute[] a_3 = null; 11167System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11169a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11172o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11176o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11213o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11242global::System.Xml.XmlAttribute[] a_3 = null; 11278System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11280a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11283o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11287o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11358o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11387global::System.Xml.XmlAttribute[] a_3 = null; 11411System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11413a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11416o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11420o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11453o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11482global::System.Xml.XmlAttribute[] a_3 = null; 11506System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11508a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11511o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11515o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11588o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11617global::System.Xml.XmlAttribute[] a_3 = null; 11644System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11646a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11649o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11653o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11676o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11705global::System.Xml.XmlAttribute[] a_3 = null; 11729System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11731a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11734o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11738o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11811o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11840global::System.Xml.XmlAttribute[] a_3 = null; 11871System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11873a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11876o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11880o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11903o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11932global::System.Xml.XmlAttribute[] a_3 = null; 11947System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 11949a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 11952o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11956o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 11987o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12016global::System.Xml.XmlAttribute[] a_3 = null; 12036System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12038a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12041o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12045o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12092o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12121global::System.Xml.XmlAttribute[] a_3 = null; 12142System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12144a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12147o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12151o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12322o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12351global::System.Xml.XmlAttribute[] a_3 = null; 12370System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12372a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12375o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12379o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12410o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12439global::System.Xml.XmlAttribute[] a_3 = null; 12459System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12461a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12464o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12468o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12531o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12560global::System.Xml.XmlAttribute[] a_3 = null; 12580System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12582a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12585o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12589o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12652o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12681global::System.Xml.XmlAttribute[] a_3 = null; 12700System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12702a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12705o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12709o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12744o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12773global::System.Xml.XmlAttribute[] a_3 = null; 12800System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12802a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12805o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12809o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12832o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12861global::System.Xml.XmlAttribute[] a_3 = null; 12881System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 12883a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 12886o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12890o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12959o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 12988global::System.Xml.XmlAttribute[] a_3 = null; 13011System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 13013a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 13016o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 13020o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 13043o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 13072global::System.Xml.XmlAttribute[] a_3 = null; 13091System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 13093a_3 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_3, ca_3, typeof(global::System.Xml.XmlAttribute)); a_3[ca_3++] = attr; 13096o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 13100o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 13123o.@UnhandledAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_3, ca_3, typeof(global::System.Xml.XmlAttribute), true); 13151global::System.Xml.XmlAttribute[] a_1 = null; 13171System.Xml.XmlAttribute attr = (System.Xml.XmlAttribute) Document.ReadNode(Reader); 13173a_1 = (global::System.Xml.XmlAttribute[])EnsureArrayIndex(a_1, ca_1, typeof(global::System.Xml.XmlAttribute)); a_1[ca_1++] = attr; 13176o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 13180o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true); 13203o.@ExtensibleAttributes = (global::System.Xml.XmlAttribute[])ShrinkArray(a_1, ca_1, typeof(global::System.Xml.XmlAttribute), true);
System.Windows.Forms (1)
System\Windows\Forms\Panels\TableLayoutPanel\TableLayoutSettingsTypeConverter.cs (1)
137XmlAttribute? attr = node.Attributes?[attribute];
System.Xml (1)
System.Xml.cs (1)
191[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlAttribute))]
System.Xml.ReaderWriter (1)
artifacts\obj\System.Xml.ReaderWriter\Debug\net10.0\System.Xml.ReaderWriter.Forwards.cs (1)
119[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlAttribute))]
System.Xml.XmlDocument (1)
System.Xml.XmlDocument.cs (1)
4[assembly: System.Runtime.CompilerServices.TypeForwardedTo(typeof(System.Xml.XmlAttribute))]