ImageMagick.XmpProfile.ToXDocument C# (CSharp) 메소드

ToXDocument() 공개 메소드

Converts this instance to a XDocument.
public ToXDocument ( ) : System.Xml.Linq.XDocument
리턴 System.Xml.Linq.XDocument
    public XDocument ToXDocument()
    {
      using (XmlReader reader = CreateReader())
      {
        return XDocument.Load(reader);
      }
    }
#endif