コード例 #1
0
 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));
 }