コード例 #1
0
        public virtual FeedSource CreateRss(String url, String name, FeedSysCategory category)
        {
            FeedSource f = CreateRss(url);

            if (f == null)
            {
                return(null);
            }

            if (strUtil.HasText(name))
            {
                f.Name = name;
            }
            f.Category = category;
            f.update();

            return(f);
        }
コード例 #2
0
 public virtual void Update(FeedSource f)
 {
     f.update();
 }
コード例 #3
0
 public virtual void Update( FeedSource f ) {
     f.update();
 }
コード例 #4
0
 public void Update( FeedSource f )
 {
     f.update();
 }
コード例 #5
0
 public void Update(FeedSource f)
 {
     f.update();
 }