コード例 #1
0
ファイル: SmtpAgentCommands.cs プロジェクト: DM-TOR/nhin-d
        public void StartAgent(string[] args)
        {
            if (m_agent != null)
            {
                return;
            }

            string configFile = args.GetRequiredValue(0);
            m_agent = SmtpAgentFactory.Create(configFile);
        }
コード例 #2
0
        public void StartAgent(string[] args)
        {
            if (m_agent != null)
            {
                return;
            }

            string configFile = args.GetRequiredValue(0);

            m_agent = SmtpAgentFactory.Create(configFile);
        }
コード例 #3
0
ファイル: SmtpAgentCommands.cs プロジェクト: DM-TOR/nhin-d
 public void StopAgent(string[] args)
 {
     m_agent = null;
 }
コード例 #4
0
ファイル: AgentDiagnostics.cs プロジェクト: DM-TOR/nhin-d
 internal AgentDiagnostics(SmtpAgent agent)
 {
     m_agent = agent;
     m_logger = Log.For(this);
 }
コード例 #5
0
 public void StopAgent(string[] args)
 {
     m_agent = null;
 }
コード例 #6
0
ファイル: AgentDiagnostics.cs プロジェクト: ssavarala/nhin-d
 internal AgentDiagnostics(SmtpAgent agent)
 {
     m_agent  = agent;
     m_logger = Log.For(this);
 }