Ejemplo n.º 1
0
        public void Add(UrlConfigElement url)
        {
            BaseAdd(url);

            // Add custom code here.
        }
Ejemplo n.º 2
0
 public int IndexOf(UrlConfigElement url)
 {
     return BaseIndexOf(url);
 }
Ejemplo n.º 3
0
 public void Remove(UrlConfigElement url)
 {
     if (BaseIndexOf(url) >= 0)
         BaseRemove(url.Name);
 }