Exemplo n.º 1
0
        /// <summary>
        /// Clenas up the inherited properties
        /// </summary>
        public void CleanInherited()
        {
            var cleanedUp = new LicenseOptions();

            foreach (var key in this.Keys)
            {
                if (this[key].Inherited != true)
                {
                    cleanedUp.Add(key, this[key]);
                }
            }

            //clear self, so can pump in the data
            this.Clear();

            foreach (var kv in cleanedUp)
            {
                this.Add(kv.Key, kv.Value);
            }
        }
Exemplo n.º 2
0
 public Application()
 {
     LicenseOptions       = new LicenseOptions();
     VisualIdentification = new SerializableDictionaryOfObject();
 }