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
 protected Cmdlet(AppRemoteTerminal terminal, IConfigSectionNode args)
 {
     m_Terminal = terminal.NonNull(nameof(terminal));
     m_Args     = args.NonEmpty(nameof(args));
 }