public LoggingAttribute(AopTypes aopType, LoggingType loggingType, string message, params object[] args) : base(aopType) { m_loggingType = loggingType; m_message = message; m_args = args; }
public AopAttribute(AopTypes aopType) { AopType = aopType; }
public MessagingAttribute(AopTypes aopType, string message, params object[] args) : base(aopType) { m_message = message; m_args = args; }