Ejemplo n.º 1
0
 public void Remove(BrowserConfigElement browser)
 {
     if (BaseIndexOf(browser) >= 0)
     {
         BaseRemove(browser.Uid);
     }
 }
Ejemplo n.º 2
0
        public BrowserCollection()
        {
            // When the collection is created, always add one element
            // with the default values. (This is not necessary; it is
            // here only to illustrate what can be done; you could
            // also create additional elements with other hard-coded
            // values here.)
            BrowserConfigElement browser = (BrowserConfigElement)CreateNewElement();

            Add(browser);
        }
Ejemplo n.º 3
0
 public int IndexOf(BrowserConfigElement browser)
 {
     return(BaseIndexOf(browser));
 }
Ejemplo n.º 4
0
 public void Add(BrowserConfigElement browser)
 {
     BaseAdd(browser);
 }