public static bool Unregister(AppRemoteTerminal term) => s_Registry.Unregister(term);
Esempio n. 2
0
 protected Cmdlet(AppRemoteTerminal terminal, IConfigSectionNode args)
 {
     m_Terminal = terminal;
     m_Args     = args;
 }
Esempio n. 3
0
 protected SkyAppCmdlet(AppRemoteTerminal terminal, IConfigSectionNode args) : base(terminal, args)
 {
 }
Esempio n. 4
0
 protected Cmdlet(AppRemoteTerminal terminal, IConfigSectionNode args)
 {
     m_Terminal = terminal.NonNull(nameof(terminal));
     m_Args     = args.NonEmpty(nameof(args));
 }