XML C#

using System;
using System.Xml;
namespace SnapDragon.ECommerce.Shipping
{
  /// 
  /// Provides extensions methods for parsing xml.
  /// 

  internal static class TrackingUtil
  {
    /// 
    /// Returns the inner text of the single node selected from the specified xpath if found; otherwise, null.
    /// 

    /// 
    /// 
    /// 
    public static string SelectSingleNodeInnerTextOrNull(this XmlNode pNode, string pXpath)
    {
      XmlNode result = pNode.SelectSingleNode(pXpath);
      if (result == null)
      {
        return null;
      }
      return result.InnerText;
    }
    
  }
}