namespace Wayne.Lib.Log { /// /// Used within the XmlLogObject class to mask a certain XML element. /// public class XmlNodeMask : IXmlElementMask { #region Construction /// /// Construction. /// /// The name of the node to mask. /// The way to mask. public XmlNodeMask(string nodeName, DebugLogMaskKind maskKind) { NodeName = nodeName; MaskKind = maskKind; } #endregion #region Properties /// /// The name of the node to mask. /// public string NodeName { get; private set; } /// /// The way to mask. /// public DebugLogMaskKind MaskKind { get; internal set; } #endregion } }