123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778 |
- #region Apache License
- #endregion
- using log4net.Filter;
- using log4net.Layout;
- using log4net.Core;
- namespace log4net.Appender
- {
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
-
- public interface IAppender
- {
-
-
-
-
-
-
-
-
-
-
-
-
- void Close();
-
-
-
-
-
-
-
-
-
- void DoAppend(LoggingEvent loggingEvent);
-
-
-
-
-
-
-
- string Name { get; set; }
- }
- }
|