DocSpace-buildtools/common/ASC.FederatedLogin/Helpers/XmlExtensions.cs

12 lines
286 B
C#
Raw Normal View History

namespace ASC.FederatedLogin.Helpers;
public static class XmlExtensions
2019-06-06 13:34:46 +00:00
{
public static string SelectNodeValue(this XPathNavigator nav, string xpath)
2019-06-06 13:34:46 +00:00
{
var node = nav.SelectSingleNode(xpath);
return node != null ? node.Value : string.Empty;
2019-06-06 13:34:46 +00:00
}
}