コード例 #1
0
ファイル: Model.cs プロジェクト: gilior/info-center-server
 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
ファイル: Model.cs プロジェクト: gilior/info-center-server
        public void Add(LinkConfigElement link)
        {
            BaseAdd(link);

            // Your custom code goes here.
        }
コード例 #3
0
ファイル: Model.cs プロジェクト: gilior/info-center-server
 public int IndexOf(LinkConfigElement link)
 {
     return(BaseIndexOf(link));
 }
コード例 #4
0
ファイル: Model.cs プロジェクト: gilior/info-center-server
        public LinksSection()
        {
            LinkConfigElement link = new LinkConfigElement();

            Links.Add(link);
        }