Base class for all method interceptors
Inheritance: IAspect
Beispiel #1
0
        internal void AddLogEntry(Aspect who, EntryType entryType, string category, string format, params object[] args)
        {
            if(who == null)
                throw new ArgumentNullException("who");

            this.AddEntryIntrenal(LogEntryOriginator.Aspect, who.GetType(), entryType, category, format, args);
        }
Beispiel #2
0
        public Aspect InstantiateAspect()
        {
            Aspect aspect = this.activator();

            return(aspect);
        }