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();
      }
    }