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); }
public Aspect InstantiateAspect() { Aspect aspect = this.activator(); return(aspect); }