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