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);
        }