示例#1
0
        public static ActionThread Create(bool indirect, ArticleThread thread, ArticleBead bead)
        {
            ActionThread thread1 = ActionThread.Create(indirect);

            thread1.DestThread = thread;
            thread1.Bead       = bead;
            return(thread1);
        }
示例#2
0
        public static ActionThread Create(ArticleThread thread, ArticleBead bead)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread = thread;
            thread1.Bead       = bead;
            return(thread1);
        }
示例#3
0
        public static ActionThread Create(ArticleThread thread, FileSpec filespec, ArticleBead bead)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread        = thread;
            thread1.FileSpecification = filespec;
            thread1.Bead = bead;
            return(thread1);
        }
示例#4
0
文件: Page.cs 项目: silvath/siscobras
 public void Remove(ArticleBead value)
 {
     base._Remove(value);
 }
示例#5
0
文件: Page.cs 项目: silvath/siscobras
 public void Add(ArticleBead value)
 {
     this[base.Count] = value;
 }