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