Exemplo n.º 1
0
        public static ActionThread Create(bool indirect, ArticleThread thread)
        {
            ActionThread thread1 = ActionThread.Create(indirect);

            thread1.DestThread = thread;
            return(thread1);
        }
Exemplo n.º 2
0
        public static ActionThread Create(ArticleThread thread)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread = thread;
            return(thread1);
        }
Exemplo n.º 3
0
        public static ActionThread Create(ArticleThread thread, FileSpec filespec)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread        = thread;
            thread1.FileSpecification = filespec;
            return(thread1);
        }
Exemplo n.º 4
0
 public void Remove(ArticleThread value)
 {
     base._Remove(value);
 }
Exemplo n.º 5
0
 public void Add(ArticleThread value)
 {
     this[base.Count] = value;
 }