public InterpNot(InterpBase value)
 {
     Value = value;
 }
 public InterpWrite(InterpBase filename, InterpBase text)
 {
     Filename = filename;
     Text     = text;
 }
Beispiel #3
0
 public InterpOs(InterpBase unix, InterpBase windows)
 {
     Unix    = unix;
     Windows = windows;
 }
 public InterpAssignment(string ident, InterpBase value)
 {
     Identifier = ident;
     Value      = value;
 }
 public InterpRemove(InterpBase value)
 {
     Value = value;
 }
 public InterpAssertion(InterpBase value)
 {
     Value = value;
 }
Beispiel #7
0
 public InterpDisconnect(InterpBase value, InterpBase cleanup)
 {
     Value   = value;
     Cleanup = cleanup;
 }
 public InterpRead(InterpBase filename)
 {
     Filename = filename;
 }
 public InterpConnect(SshAuthManager authManager, InterpBase address, InterpBase prepend)
 {
     Address       = address;
     m_authManager = authManager;
     Prepend       = prepend;
 }
Beispiel #10
0
 public InterpOutput(InterpBase value)
 {
     Value = value;
 }
Beispiel #11
0
 public InterpEqual(InterpBase left, InterpBase right)
 {
     Left  = left;
     Right = right;
 }
Beispiel #12
0
 public InterpRun(InterpBase name, InterpBase args)
 {
     Name = name;
     Args = args;
 }
Beispiel #13
0
 public InterpSsh(InterpBase conn, InterpBase command)
 {
     Connection = conn;
     Command    = command;
 }
Beispiel #14
0
 public InterpKill(InterpBase target)
 {
     Target = target;
 }
 public InterpScp(InterpBase conn, InterpBase localFile, InterpBase remoteFile)
 {
     Connection = conn;
     LocalFile  = localFile;
     RemoteFile = remoteFile;
 }
Beispiel #16
0
 public InterpShell(InterpBase value)
 {
     Value = value;
 }
Beispiel #17
0
 public InterpTail(InterpBase amount, InterpBase value)
 {
     Amount = amount;
     Value  = value;
 }