예제 #1
0
 public void Remove(LinkConfigElement link)
 {
     if (BaseIndexOf(link) >= 0)
     {
         BaseRemove(link.nm);
         // Your custom code goes here.
         Console.WriteLine("UrlsCollection: {0}", "Removed collection element!");
     }
 }
예제 #2
0
        public void Add(LinkConfigElement link)
        {
            BaseAdd(link);

            // Your custom code goes here.
        }
예제 #3
0
 public int IndexOf(LinkConfigElement link)
 {
     return(BaseIndexOf(link));
 }
예제 #4
0
        public LinksSection()
        {
            LinkConfigElement link = new LinkConfigElement();

            Links.Add(link);
        }