Show / Hide Table of Contents

Class LambdaErrorReportStackTrace

The LambdaErrorReportStackTrace class describes an exception trace, which includes information about the exception and the stack frames between where the exception was thrown and where it was caught.

Inheritance
System.Object
LambdaErrorReportStackTrace
Namespace: LambdaSharp.Logging.ErrorReports.Models
Assembly: LambdaSharp.Logging.dll
Syntax
public class LambdaErrorReportStackTrace

Properties

Exception

The Exception property holds information about the exception.

Declaration
public LambdaErrorReportExceptionInfo Exception { get; set; }
Property Value
Type Description
LambdaErrorReportExceptionInfo

The exception details.

Frames

The Frames property holds the stack frames between where the exception was thrown and where it was caught.

Declaration
public IEnumerable<LambdaErrorReportStackFrame> Frames { get; set; }
Property Value
Type Description
System.Collections.Generic.IEnumerable<LambdaErrorReportStackFrame>

The exception stack frames.

In This Article
Back to top Generated by DocFX