1 override of Attributes
dotnet-svcutil-lib (1)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlElement.cs (1)
235public override XmlAttributeCollection Attributes
10 references to Attributes
dotnet-svcutil-lib (10)
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlDocument.cs (4)
967int cAttr = fromElem.Attributes.Count; 970if (fromElem.Attributes[iAttr].Specified) 971toElem.Attributes.SetNamedItem(ImportNodeInternal(fromElem.Attributes[iAttr], true));
FrameworkFork\Microsoft.Xml\Xml\Dom\XmlNodeReader.cs (5)
343return _elemNode.Attributes.Count; 737if (_attrIndex >= (_elemNode.Attributes.Count - 1)) 741_curNode = _elemNode.Attributes[++_attrIndex]; 747if (_curNode.Attributes.Count > 0) 751_curNode = _curNode.Attributes[0];
FrameworkFork\System.ServiceModel\System\ServiceModel\Channels\ReliableSessionBindingElementImporter.cs (1)
245XmlAttribute millisecondsAttribute = wsrmNode.Attributes[ReliableSessionPolicyStrings.Milliseconds];