Still looking for a sponsor
The Silverlight framework is restricted in comparison with .Net framework. It does not provide the XmlDocument class, that has the InnerText property. Silverlight applications should use XDocument instead of XmlDocument. Following code is an extension method for the XNode class that implements InnerText functionality. public static string InnerText(this XNode xNode)
{
bool isContainer = xNode is XContainer;
if (!isContainer)
{
switch (xNode.NodeType)
...