| 123456789101112131415161718192021222324252627282930313233 | namespace Wayne.Lib.Log{                public class XmlAttributeMask : XmlNodeMask    {        #region Construction                                                        public XmlAttributeMask(string nodeName, string attributeName, DebugLogMaskKind maskKind)            : base(nodeName, maskKind)        {            AttributeName = attributeName;        }        #endregion        #region Properties                                public string AttributeName { get; private set; }        #endregion    }}
 |