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