Esempio n. 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);
        }
Esempio n. 2
0
        public static ActionThread Create(ArticleThread thread, ArticleBead bead)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread = thread;
            thread1.Bead       = bead;
            return(thread1);
        }
Esempio n. 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);
        }
Esempio n. 4
0
 public void Remove(ArticleBead value)
 {
     base._Remove(value);
 }
Esempio n. 5
0
 public void Add(ArticleBead value)
 {
     this[base.Count] = value;
 }