public static bool Unregister(AppRemoteTerminal term) => s_Registry.Unregister(term);
예제 #2
0
파일: Cmdlet.cs 프로젝트: nligerakis/azos
 protected Cmdlet(AppRemoteTerminal terminal, IConfigSectionNode args)
 {
     m_Terminal = terminal;
     m_Args     = args;
 }
예제 #3
0
파일: Cmdlet.cs 프로젝트: nligerakis/azos
 protected SkyAppCmdlet(AppRemoteTerminal terminal, IConfigSectionNode args) : base(terminal, args)
 {
 }
예제 #4
0
파일: Cmdlet.cs 프로젝트: wangchengqun/azos
 protected Cmdlet(AppRemoteTerminal terminal, IConfigSectionNode args)
 {
     m_Terminal = terminal.NonNull(nameof(terminal));
     m_Args     = args.NonEmpty(nameof(args));
 }