Aspectacular.AspNetTraceAspect.Output C# (CSharp) Метод

Output() защищенный Метод

protected Output ( string output ) : void
output string
Результат void
        protected override void Output(string output)
        {
            if(HttpContext.Current == null)
                return;

            EntryType? worstCase = this.WorstEntryType;

            if(worstCase == null)
                return;

            if(worstCase.Value == EntryType.Info)
                HttpContext.Current.Trace.Write(output);
            else
                HttpContext.Current.Trace.Warn(output);
        }