9 references to Attribute
System.Data.Services.Client (2)
System\Data\Services\Client\AtomMaterializer.cs (2)
1484string typeName = (string)element.Attribute(XName.Get(XmlConstants.AtomTypeAttributeName, XmlConstants.DataWebMetadataNamespace)); 1495var attribute = element.Attribute(XName.Get(localName, item.SegmentNamespaceUri));
System.Xml.Linq (7)
System\Xml\Linq\XComponentModel.cs (1)
125return value = new XDeferredSingleton<XAttribute>((e, n) => e.Attribute(n), component as XElement, null);
System\Xml\Linq\XLinq.cs (5)
4349XAttribute a = Attribute(name); 4974if (Attribute(a.Name) != null) throw new InvalidOperationException(Res.GetString(Res.InvalidOperation_DuplicateAttribute)); 4980if (Attribute(a.Name) != null) throw new InvalidOperationException(Res.GetString(Res.InvalidOperation_DuplicateAttribute)); 8376XAttribute a = e.Attribute(name); 8396XAttribute a = e.Attribute(name);
System\Xml\Linq\XNodeNavigator.cs (1)
768if (e.Attribute(name) != null) {