Example #1
0
		/// <summary />
		/// <remarks />
		public virtual void RemoveKeyType(KeyType o) 
		{
			this.List.Remove(o);
		}
Example #2
0
		/// <summary />
		/// <remarks />
		public virtual void AddKeyType(KeyType o) 
		{
			this.List.Add(o);
		}
Example #3
0
		/// <summary />
		/// <remarks />
		public virtual bool ContainsKeyType(KeyType o) 
		{
			return this.List.Contains(o);
		}
        private KeyType BuildKeyType(String s)
        {
            KeyType kt = new KeyType();
            kt.ID = s;
            kt.For = KeyForType.All;

            return kt;
        }