Exemplo n.º 1
0
 /// <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);
 }
Exemplo n.º 2
0
 /// <summary>
 /// Creates a new instance of destination that sends messages to .nix SYSLOG
 /// </summary>
 public SyslogDestination()
     : base(null)
 {
     m_Client = new SyslogClient();
 }