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