protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.String, ParameterTypes.Node
     };
     OutputType = ParameterTypes.None;
 }
示例#2
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Node;
     ElemType   = typeof(ElemFindSingleNode);
 }
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Any;
     ElemType   = typeof(ElemVariableReadLoaded);
 }
示例#4
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Any;
     ElemType   = typeof(ElemStoreSingleVariable);
 }
示例#5
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.None
     };
     OutputType = ParameterTypes.None;
     ElemType   = typeof(ElemStart);
 }
示例#6
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.String
     };
     OutputType = ParameterTypes.Boolean;
     ElemType   = typeof(ElemLoadURL);
 }
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Any;
     ElemType   = typeof(ElemDeserializeSavebleVariables);
 }
示例#8
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.ParsedItem;
     //ElemType = typeof(ElemParsedItemInteract);
 }
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.Node;
     //ElemType = typeof(ElemClickElement);
 }
示例#10
0
 protected override void StaticTypes(TaskSession ts)
 {
     InputTypes = new List <ParameterTypes>()
     {
         ParameterTypes.Any
     };
     OutputType = ParameterTypes.String;
     ElemType   = typeof(ElemTextInput);
 }
 public TSDeserializeSavebleVariables(TaskSession ts)
     : base(ts)
 {
 }
示例#12
0
 protected TSBase(TaskSession ts)
 {
     Session           = ts;
     DirectStringInput = "";
     StaticTypes(ts);
 }
示例#13
0
 protected abstract void StaticTypes(TaskSession ts);
示例#14
0
 public TSLoadSingleVariable(TaskSession ts)
     : base(ts)
 {
 }
 public TSParsedItemCreate(TaskSession ts)
     : base(ts)
 {
 }
示例#16
0
 public TSStart(TaskSession ts) : base(ts)
 {
 }
示例#17
0
 public TSWhile(TaskSession ts) : base(ts)
 {
 }
 public TSVariableReadLoaded(TaskSession ts)
     : base(ts)
 {
 }
示例#19
0
 public TSSerializeSavableVariables(TaskSession ts)
     : base(ts)
 {
 }
示例#20
0
 public TSParsedItemInteract(TaskSession ts)
     : base(ts)
 {
 }
 public TSClickElement(TaskSession ts) : base(ts)
 {
 }
示例#22
0
 public TSFindNodes(TaskSession ts) : base(ts)
 {
 }
示例#23
0
 public TSFindSingleNode(TaskSession ts) : base(ts)
 {
 }
示例#24
0
 public TSStoreSingleVariable(TaskSession ts)
     : base(ts)
 {
 }
示例#25
0
 public TSEnd(TaskSession ts) : base(ts)
 {
 }
示例#26
0
 public TSFileAppend(TaskSession ts) : base(ts)
 {
 }
示例#27
0
 public TSHonk(TaskSession ts) : base(ts)
 {
 }
示例#28
0
 public TSTextInput(TaskSession ts) : base(ts)
 {
 }
示例#29
0
 protected override void StaticTypes(TaskSession ts)
 {
     ElemType = typeof(ElemWhile);
     throw new NotImplementedException();
 }
 public TSDebugRenderBrowser(TaskSession ts) : base(ts)
 {
 }