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