IXmlElementMask.cs 429 B

123456789101112131415161718
  1. namespace Wayne.Lib.Log
  2. {
  3. /// <summary>
  4. /// Used within the XmlLogObject class to mask a certain XML element.
  5. /// </summary>
  6. public interface IXmlElementMask
  7. {
  8. /// <summary>
  9. /// The name of the node to mask.
  10. /// </summary>
  11. string NodeName { get; }
  12. /// <summary>
  13. /// The way to mask.
  14. /// </summary>
  15. DebugLogMaskKind MaskKind { get; }
  16. }
  17. }