Exemplo n.º 1
0
 public void Remove(CustomScript url)
 {
     if (BaseIndexOf(url) >= 0)
     {
         BaseRemove(url.ID);
     }
 }
Exemplo n.º 2
0
 public CustomScriptsConfig()
 {
     element = new CustomScript();
 }
Exemplo n.º 3
0
        public CustomScriptCollection()
        {
            CustomScript myElement = (CustomScript)CreateNewElement();

            Add(myElement);
        }
Exemplo n.º 4
0
 public int indexof(CustomScript element)
 {
     return(BaseIndexOf(element));
 }
Exemplo n.º 5
0
 public void Add(CustomScript customElement)
 {
     BaseAdd(customElement);
 }