Example #1
0
 internal whoami_response(c command, m content)
     : base(command, content)
 {
 }
Example #2
0
 public override R ok(M content)
 => new R(this, content);
Example #3
0
 internal rmdir_response(C command, M content)
     : base(command, content)
 {
 }
Example #4
0
 public override r ok(m content)
 => new r(this, content);
Example #5
0
 internal cd_response(c command, m content)
     : base(command, content)
 {
 }
Example #6
0
 protected ProcessSubCommand(c controller, ProcessMessage content)
     : base(content)
 {
     this.controller = controller;
 }
Example #7
0
 public override IProcessResponseMessge Error(Type response_type, ProcessMessage content)
 => adapted_command.Error(response_type, content);
Example #8
0
 internal exit(m content)
     : base(content)
 {
 }
Example #9
0
 internal setx(M content)
     : base(content)
 {
 }
Example #10
0
 internal list(c.list command, m content)
     : base(command, content)
 {
 }
Example #11
0
 internal set(m content)
     : base(content)
 {
 }
Example #12
0
 internal choco(m content)
     : base(content)
 {
 }
Example #13
0
 public override r.list ok(m content)
 => new r.list(this, content);
Example #14
0
 internal list(c controller, m content)
     : base(controller, content)
 {
 }
Example #15
0
 internal mklink(m content)
     : base(content)
 {
 }
Example #16
0
 internal setx_response(C command, M content)
     : base(command, content)
 {
 }
Example #17
0
 internal mklink_response(c command, m content)
     : base(command, content)
 {
 }
Example #18
0
 internal msbuild(M content)
     : base(content)
 {
     m = true;
 }
Example #19
0
 protected ProcessSubCommand(string name, c controller, ProcessMessage content)
     : base(name, content)
 {
     this.controller = controller;
 }
Example #20
0
 internal msbuild_response(C command, M content)
     : base(command, content)
 {
 }
Example #21
0
 internal cd(m content)
     : base(content)
 {
 }
Example #22
0
 protected ProcessCommand(M content)
 {
     this.content = content;
 }
Example #23
0
 public override r error(m content)
 => new r(this, content);
Example #24
0
 internal exec(m content)
     : base(content)
 {
 }
Example #25
0
 internal rmdir(M content)
     : base(content)
 {
 }
Example #26
0
 internal robocopy_response(C command, M content)
     : base(command, content)
 {
 }
Example #27
0
 public override R error(M content)
 => new R(this, content);
Example #28
0
 internal call(m content)
     : base(content)
 {
 }
Example #29
0
 protected ProcessComandResponse(C command, IMessage content)
 {
     this.Command = command;
     this.Content = content as ProcessMessage ?? ProcessMessage.Empty(command.CommandName);
 }
Example #30
0
 internal whoami(m content)
     : base(content)
 {
 }