コード例 #1
0
ファイル: ActionThread.cs プロジェクト: silvath/siscobras
        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
ファイル: ActionThread.cs プロジェクト: silvath/siscobras
        public static ActionThread Create(ArticleThread thread, ArticleBead bead)
        {
            ActionThread thread1 = ActionThread.Create(true);

            thread1.DestThread = thread;
            thread1.Bead       = bead;
            return(thread1);
        }
コード例 #3
0
ファイル: ActionThread.cs プロジェクト: silvath/siscobras
        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;
 }