/// <summary>
 /// Returns a <see cref="System.String"/>
 /// for the transformation of the XSLT document
 /// and the XML document.
 /// </summary>
 /// <param name="xslSet">
 /// The source <see cref="System.Xml.XPath.IXPathNavigable"/> XSL set.
 /// </param>
 /// <param name="xslArgs">
 /// The <see cref="System.Xml.Xsl.XsltArgumentList"/>.
 /// </param>
 /// <param name="navigableSet">
 /// The source <see cref="System.Xml.XPath.IXPathNavigable"/> XML set.
 /// </param>
 public static string GetXslString(IXPathNavigable xslSet, XsltArgumentList xslArgs, IXPathNavigable navigableSet)
 {
     return(XmlUtility.GetXslString(xslSet, xslArgs, navigableSet, null));
 }
 /// <summary>
 /// Returns a <see cref="System.String"/>
 /// for the transformation of the XSLT document
 /// and the XML document.
 /// </summary>
 /// <param name="xslSet">The source <see cref="System.Xml.XPath.IXPathNavigable"/> XSL set.</param>
 /// <param name="navigableSet">The source <see cref="System.Xml.XPath.IXPathNavigable"/> XML set.</param>
 public static string GetXslString(IXPathNavigable xslSet, IXPathNavigable navigableSet)
 {
     return(XmlUtility.GetXslString(xslSet, null, navigableSet, null));
 }