public void StartAgent(string[] args) { if (m_agent != null) { return; } string configFile = args.GetRequiredValue(0); m_agent = SmtpAgentFactory.Create(configFile); }
public void StopAgent(string[] args) { m_agent = null; }
internal AgentDiagnostics(SmtpAgent agent) { m_agent = agent; m_logger = Log.For(this); }