123456789101112131415161718 |
- namespace Wayne.Lib.Log
- {
- /// <summary>
- /// Used within the XmlLogObject class to mask a certain XML element.
- /// </summary>
- public interface IXmlElementMask
- {
- /// <summary>
- /// The name of the node to mask.
- /// </summary>
- string NodeName { get; }
- /// <summary>
- /// The way to mask.
- /// </summary>
- DebugLogMaskKind MaskKind { get; }
- }
- }
|