1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- using ComPDFKit.NativeMethod;
- using System;
- using System.Collections.Generic;
- using System.Configuration;
- using System.Data;
- using System.Linq;
- using System.Reflection;
- using System.Threading.Tasks;
- using System.Windows;
- using System.Xml;
- namespace DocsEditor
- {
- public class SDKLicenseHelper
- {
- public string key = string.Empty;
- public string secret = string.Empty;
- public SDKLicenseHelper()
- {
- string sdkLicensePath = "license_key_win.xml";
- Assembly assembly = Assembly.GetExecutingAssembly();
- XmlDocument xmlDocument = new XmlDocument();
- xmlDocument.Load(sdkLicensePath);
- var node = xmlDocument.SelectSingleNode("License");
- if (node != null)
- {
- key = node.Attributes["key"].Value;
- secret = node.Attributes["secret"].Value;
- }
- }
- }
- public partial class App : Application
- {
- protected override void OnStartup(StartupEventArgs e)
- {
- string str = this.GetType().Assembly.Location;
- base.OnStartup(e);
- LicenseVerify();
- }
- private static bool LicenseVerify()
- {
- bool result = false;
- result = CPDFSDKVerifier.LoadNativeLibrary();
- if (!result)
- return false;
- SDKLicenseHelper sdkLicenseHelper = new SDKLicenseHelper();
- LicenseErrorCode verifyResult = CPDFSDKVerifier.LicenseVerify(sdkLicenseHelper.key, sdkLicenseHelper.secret);
- if (verifyResult != LicenseErrorCode.LICENSE_ERR_SUCCESS)
- return false;
- return result;
- }
- }
- }
|