Aspectacular.ExceptionExtensions.ConsolidatedStack C# (CSharp) Метод

ConsolidatedStack() публичный статический Метод

Returns all stack traces in the exception chain (main + inner exceptions), starting from the innermost one.
public static ConsolidatedStack ( this ex, string separator = null, bool innerFirst = true ) : string
ex this
separator string
innerFirst bool True to put innermost exception on top, false for outermost.
Результат string
        public static string ConsolidatedStack(this Exception ex, string separator = null, bool innerFirst = true)
        {
            return Consolidate(ex, separator, innerFirst, e => e.StackTrace);
        }