1234567891011121314151617181920212223242526272829303132333435363738394041424344 |
- namespace Wayne.Lib.Log
- {
-
-
-
- public class LogTextWritingParameters
- {
- #region Construction
- internal LogTextWritingParameters(string dateTimeFormat, EntityLogKind entityLogKind, bool suppressCategory, bool keepFileOpened)
- {
- DateTimeFormat = dateTimeFormat;
- EntityLogKind = entityLogKind;
- SuppressCategory = suppressCategory;
- KeepFileOpened = keepFileOpened;
- }
- #endregion
- #region Properties
-
-
-
- public string DateTimeFormat { get; private set; }
-
-
-
- public EntityLogKind EntityLogKind { get; private set; }
-
-
-
- public bool SuppressCategory { get; private set; }
-
-
-
- public bool KeepFileOpened { get; private set; }
- #endregion
- }
- }
|