Is possible to get the start tag string of an XElement?
For example, if i have an xml element like this
<Product Id="101" Name="Product 1">
<Images>
// ..
</Images>
<Description>
// ..
</Description>
</Product>
i want to get only the start tag:
<Product Id="101" Name="Product 1">
I use this for validation feedback purposes.