ImageMagick.XmpProfile.ToIXPathNavigable C# (CSharp) Method

ToIXPathNavigable() public method

Converts this instance to an IXPathNavigable.
public ToIXPathNavigable ( ) : IXPathNavigable
return IXPathNavigable
    public IXPathNavigable ToIXPathNavigable()
    {
      using (XmlReader reader = CreateReader())
      {
        XmlDocument result = new XmlDocument();
        result.Load(reader);
        return result.CreateNavigator();
      }
    }