UnexpectedException() public method

public UnexpectedException ( Exception exception, bool trace = true, string memberName = null, string sourceFilePath = null, int sourceLineNumber ) : void
exception System.Exception
trace bool
memberName string
sourceFilePath string
sourceLineNumber int
return void
Beispiel #1
0
        public static void UnexpectedException(Exception ex, ITraceFactory traceFactory)
        {
            var analytic = new Analytics(null, new ServerConfiguration(), traceFactory);

            analytic.UnexpectedException(ex, trace: true);
        }
Beispiel #2
0
 public static void UnexpectedException(Exception ex, ITraceFactory traceFactory)
 {
     var analytic = new Analytics(null, new ServerConfiguration(), traceFactory);
     analytic.UnexpectedException(ex, trace: true);
 }