Exemplo n.º 1
0
        public virtual void onRaiseLogEvent(LogEventArgs e)
        {
            EventHandler<LogEventArgs> handler = RaiseLogEvent;

            if (handler != null)
                {
                handler(this, e);
                }
        }
Exemplo n.º 2
0
 private void LogWrite(object sender, LogEventArgs e)
 {
     safeFileStream.CreateFile(e.path, e.content);
 }