Click here to Skip to main content
15,888,527 members
Articles / Programming Languages / Visual Basic

Creating Secure Trial Versions for .NET Applications - A Tutorial

Rate me:
Please Sign up or sign in to vote.
4.88/5 (65 votes)
16 Oct 2012CPOL7 min read 176.8K   22K   243  
Implement trial licensing model for your .NET applications with minimal costs
using System;
using System.Collections.Generic;
using System.Text;
using System.Reflection;
using System.Xml;
using System.IO;

namespace SampleTrialAppCS
{
    class AppSettings
    {
        public AppSettings()
        {
            settingsFile = Environment.GetFolderPath(Environment.SpecialFolder.LocalApplicationData) + "\\SampleApp\\Settings.xml";
        }

        public void Load()
        {
            try
            {
                settings = new XmlDocument();
                settings.Load(settingsFile);
            }
            catch (Exception)
            {

            }

            if (settings.SelectSingleNode("/Settings") == null)
                settings.AppendChild(settings.CreateElement("Settings", null));
        }

        public void Save()
        {
            try
            {
                string settingsPath = Path.GetDirectoryName(settingsFile);
                if (!Directory.Exists(settingsPath))
                {
                    Directory.CreateDirectory(settingsPath);
                }

                settings.Save(settingsFile);
            }
            catch (Exception)
            {

            }
        }

        public string GetProperty(string name)
        {
            XmlNode val = settings.SelectSingleNode("/Settings/" + name);
            
            if (val == null)
                return null;

            return val.InnerText;
        }

        public void SetProperty(string name, string value)
        {
            XmlNode val = settings.SelectSingleNode("/Settings/" + name);

            if (val != null)
                val.InnerText = value;
            else
            {
                val = settings.CreateNode(XmlNodeType.Element, name, null);
                val.InnerText = value;

                settings.DocumentElement.SelectSingleNode("/Settings").AppendChild(val);
            }
        }

        XmlDocument settings;
        //Dictionary<string, string> settings;
        string settingsFile;
    }
}

By viewing downloads associated with this article you agree to the Terms of Service and the article's licence.

If a file you wish to view isn't highlighted, and is a text file (not binary), please let us know and we'll add colourisation support for it.

License

This article, along with any associated source code and files, is licensed under The Code Project Open License (CPOL)


Written By
United States United States
This member has not yet provided a Biography. Assume it's interesting and varied, and probably something to do with programming.

Comments and Discussions