ImageMagick.XmpProfile.ToIXPathNavigable C# (CSharp) Метод

ToIXPathNavigable() публичный Метод

Converts this instance to an IXPathNavigable.
public ToIXPathNavigable ( ) : IXPathNavigable
Результат IXPathNavigable
    public IXPathNavigable ToIXPathNavigable()
    {
      using (XmlReader reader = CreateReader())
      {
        XmlDocument result = new XmlDocument();
        result.Load(reader);
        return result.CreateNavigator();
      }
    }