InternalTraceCall() private method

private InternalTraceCall ( int levels ) : void
levels int
return void
Esempio n. 1
0
        public static void Trace(System.Exception exception)
        {
            if (exception == null)
            {
                throw new ArgumentNullException("exception");
            }

            CciTracing.InternalTraceCall(2);
            System.Diagnostics.Trace.WriteLine("ExceptionInfo: \t" + exception.ToString());
        }
Esempio n. 2
0
 public static void TraceCall(string parameters)
 {
     CciTracing.InternalTraceCall(2);
     System.Diagnostics.Trace.WriteLine("\tParameters: \t" + parameters);
 }
Esempio n. 3
0
 public static void TraceCall()
 {
     // skip this one as well
     CciTracing.InternalTraceCall(2);
 }