Base:
property
Attributes
Microsoft.Xml.XmlNode.Attributes
74 references to Attributes
dotnet-svcutil-lib (74)
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentSchemaValidator.cs (4)
191XmlAttributeCollection attrs = elem.Attributes; 348XmlAttributeCollection attributes = elementNode.Attributes; 407XmlAttributeCollection attributes = elementNode.Attributes; 704XmlAttributeCollection attributes = elementNode.Attributes;
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXmlWriter.cs (2)
428XmlAttributeCollection attrs = elem.Attributes; 509elem.Attributes.Append(attr);
FrameworkFork\Microsoft.Xml\Xml\Dom\DocumentXPathNavigator.cs (12)
276XmlAttributeCollection attributes = element.Attributes; 301XmlAttributeCollection attributes = element.Attributes; 330XmlAttributeCollection attributes = element.Attributes; 487attributes = element.Attributes; 497attributes = element.Attributes; 516attributes = element.Attributes; 564attributes = element.Attributes; 679attributes = element.Attributes; 1336XmlAttributeCollection attributes = element.Attributes; 1845XmlAttributeCollection attributes = elements[i].Attributes; 1870ResetAttributePosition(attribute, element.Attributes, out _attributeIndex); 1901attributes = element.Attributes;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttribute.cs (2)
147return ownerElement.Attributes.PrepareParentInElementIdAttrMap(Prefix, LocalName); 158ownerElement.Attributes.ResetParentInElementIdAttrMap(oldInnerText, InnerText);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlAttributeCollection.cs (1)
324attr.OwnerElement.Attributes.Remove(attr);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (12)
66foreach (XmlAttribute attr in Attributes) 71element.Attributes.InternalAppendAttribute(newAttr); 285Attributes.InternalAppendAttribute(attr); 297Attributes.RemoveNamedItem(name); 304return Attributes[name]; 313return (XmlAttribute)Attributes.SetNamedItem(newAttr); 320return (XmlAttribute)Attributes.Remove(oldAttr); 353Attributes.InternalAppendAttribute(attr); 375return Attributes[localName, namespaceURI]; 386Attributes.InternalAppendAttribute(attr); 398Attributes.Remove(attr); 508XmlAttributeCollection attrs = Attributes;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlLoader.cs (6)
118XmlAttributeCollection attributes = element.Attributes; 476XmlAttributeCollection attributes = element.Attributes; 707foreach (XmlAttribute attr in ((XmlElement)node).Attributes) 811XmlAttributeCollection attrs = elem.Attributes; 824elem.Attributes.RemoveNodeAt(i); 841elem.Attributes.RemoveNodeAt(i);
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNode.cs (2)
1079XmlAttributeCollection attrs = elem.Attributes; 1164XmlAttributeCollection attrs = elem.Attributes;
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (8)
340return ((XmlElement)_curNode).Attributes.Count; 543return ((XmlElement)_curNode).Attributes[attributeIndex].Value; 546return ((XmlElement)_elemNode).Attributes[attributeIndex].Value; 659_attrIndex = elem.Attributes.FindNodeOffsetNS(attr); 705attr = ((XmlElement)_curNode).Attributes[attributeIndex]; 715attr = ((XmlElement)_elemNode).Attributes[attributeIndex]; 959XmlAttributeCollection attrs = elem.Attributes; 1009XmlAttributeCollection attrs = elem.Attributes;
FrameworkFork\Microsoft.Xml\Xml\schema\Parser.cs (1)
350XmlAttributeCollection attributes = element.Attributes;
FrameworkFork\System.Runtime.Serialization\System\Runtime\Serialization\SchemaImporter.cs (7)
1033XmlNode emitDefaultValueAttribute = defaultValueElement.Attributes.GetNamedItem(Globals.EmitDefaultValueAttribute); 1046XmlNode nameAttribute = actualTypeElement.Attributes.GetNamedItem(Globals.ActualTypeNameAttribute); 1050XmlNode nsAttribute = actualTypeElement.Attributes.GetNamedItem(Globals.ActualTypeNamespaceAttribute); 1292XmlNode nameAttribute = typeElement.Attributes.GetNamedItem(Globals.GenericNameAttribute); 1296XmlNode nsAttribute = typeElement.Attributes.GetNamedItem(Globals.GenericNamespaceAttribute); 1313XmlNode nestedLevelAttribute = argumentElement.Attributes.GetNamedItem(Globals.GenericParameterNestedLevelAttribute); 1327XmlNode typeNestedLevelsAttribute = typeElement.Attributes.GetNamedItem(Globals.GenericParameterNestedLevelAttribute);
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\TransactionFlowBindingElement.cs (2)
302result.Attributes.Append(attr); 311result.Attributes.Append(attrLegacy);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\SoapHelper.cs (3)
117fault.Attributes.Append(CreateLocalAttribute("name", name)); 118fault.Attributes.Append(CreateLocalAttribute("use", isEncoded ? "encoded" : "literal")); 392foreach (XmlAttribute attribute in src.Attributes)
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlExporter.cs (1)
818policyReferenceElement.Attributes.Append(uriAttribute);
FrameworkFork\System.ServiceModel\System\ServiceModel\Description\WsdlImporter.cs (5)
1335wsdlBindingQName = new XmlQualifiedName(policy.Attributes[bindingAttrName].Value, policy.Attributes[bindingAttrNamespace].Value); 1467workaroundElement.Attributes.Append(bindingName); 1471workaroundElement.Attributes.Append(bindingNamespace); 1473workaroundElement.Attributes.Append(bindingNamespace);
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\Tokens\IssuedSecurityTokenParameters.cs (3)
335element.Attributes.Append(attr); 340element.Attributes.Append(attr); 558XmlNode claimType = claimTypeElement.Attributes.GetNamedItem("Uri");
FrameworkFork\System.ServiceModel\System\ServiceModel\Security\WSTrustDec2005.cs (1)
104result.Attributes.Append(dialectAttribute);
FrameworkFork\System.Web.Services\Services\Description\ServiceDescription.cs (2)
1747XmlAttribute requiredAttr = element.Attributes["required", ServiceDescription.Namespace]; 1750requiredAttr = element.Attributes["required"];