/// <summary> /// Creates a new instance of destination that sends messages to .nix SYSLOG /// </summary> public SyslogDestination(string name, string host, int port) : base(name) { m_Client = new SyslogClient(host, port); }
/// <summary> /// Creates a new instance of destination that sends messages to .nix SYSLOG /// </summary> public SyslogDestination() : base(null) { m_Client = new SyslogClient(); }