LicenseKey.cs 914 B

123456789101112131415161718192021222324252627282930313233343536
  1. using ComPDFKit.NativeMethod;
  2. using System.Xml;
  3. public static class SDKLicenseHelper
  4. {
  5. public static string ParseLicenseXML()
  6. {
  7. try
  8. {
  9. XmlDocument xmlDocument = new XmlDocument();
  10. xmlDocument.Load("license_key_windows.xml");
  11. XmlNode xmlNode = xmlDocument.SelectSingleNode("/license/key");
  12. if (xmlNode == null)
  13. {
  14. return string.Empty;
  15. }
  16. else
  17. {
  18. return xmlNode.InnerText;
  19. }
  20. }
  21. catch
  22. {
  23. return string.Empty;
  24. }
  25. }
  26. public static bool LicenseVerify()
  27. {
  28. if (!CPDFSDKVerifier.LoadNativeLibrary())
  29. return false;
  30. LicenseErrorCode verifyResult = CPDFSDKVerifier.LicenseVerify(ParseLicenseXML(), false);
  31. return (verifyResult == LicenseErrorCode.E_LICENSE_SUCCESS);
  32. }
  33. }