Ejemplo n.º 1
0
 public CfTreeNode(string progName,
                   CfTreeNode parent = null)
 {
     ProgName = progName;
     Parent   = parent;
     Children = new List <CfTreeNode>();
 }
Ejemplo n.º 2
0
 public DeltaNode(string progName,
                  CfTreeNode parent,
                  string pipeName,
                  bool noStart = false)
     : base(progName, parent)
 {
     Properties = new ChildNodeProperties
     {
         NoStart  = noStart,
         PipeName = pipeName
     };
 }
Ejemplo n.º 3
0
 public TmsNode(string progName,
                CfTreeNode parent,
                string pipeName,
                bool noStart     = false,
                bool passiveMode = false)
     : base(progName, parent)
 {
     Properties = new TmsNodeProperties
     {
         NoStart     = noStart,
         PassiveMode = passiveMode,
         PipeName    = pipeName
     };
 }
Ejemplo n.º 4
0
 public ExternalTaskNode(string progName,
                         CfTreeNode parent,
                         string pipeName,
                         bool noStart         = false,
                         string taskPath      = "",
                         string taskArguments = "",
                         string confFilePath  = "")
     : base(progName, parent)
 {
     Properties = new ExternalTaskNodeProperties
     {
         NoStart               = noStart,
         PipeName              = pipeName,
         TaskPath              = taskPath,
         TaskArguments         = taskArguments,
         ConfigurationFilePath = confFilePath
     };
 }