I have to re-write a large project that uses classes from the System.Xml-Namespace to use the respective classes from System.Xml.Linq using .NET-3.5.
One the functions use the System.Xml.XmlAttribute.Specified
property to find all attributes that are specified in regard to a DTD.
Is there an equivalent to this property in the System.Xml.Linq-Namespace, and, if not, is there a workaround to get the same information from an System.Xml.Linq.XAttribute
?