Ejemplo n.º 1
0
 public void Remove(TTYConfigElement details)
 {
     if (BaseIndexOf(details) >= 0)
     {
         BaseRemove(details.key);
     }
 }
Ejemplo n.º 2
0
        public TTYCollection()
        {
            TTYConfigElement details = (TTYConfigElement)CreateNewElement();

            if (details.key != "")
            {
                Add(details);
            }
        }
Ejemplo n.º 3
0
 public void Add(TTYConfigElement details)
 {
     BaseAdd(details);
 }
Ejemplo n.º 4
0
 public int IndexOf(TTYConfigElement details)
 {
     return(BaseIndexOf(details));
 }
Ejemplo n.º 5
0
        public bool HasTTYElement(String TTYKey, String TTYElementKey)
        {
            TTYConfigElement config = (TTYConfigElement)BaseGet(TTYKey);

            return((config != null && config.ttyElements.HasTTYElement(TTYElementKey)) ? true : false);
        }