Mindscape.Raygun4Net.RaygunClient.StripWrapperExceptions C# (CSharp) 메소드

StripWrapperExceptions() 개인적인 메소드

private StripWrapperExceptions ( Exception exception ) : Exception
exception Exception
리턴 Exception
        private Exception StripWrapperExceptions(Exception exception)
        {
            if (exception != null && _wrapperExceptions.Any(wrapperException => exception.GetType() == wrapperException && exception.InnerException != null))
              {
            return StripWrapperExceptions(exception.InnerException);
              }

              return exception;
        }

Same methods

RaygunClient::StripWrapperExceptions ( Exception exception ) : IEnumerable