Class LambdaErrorReportStackFrame
The LambdaErrorReportStackFrame class describes an execution stack frame.
Inheritance
System.Object
LambdaErrorReportStackFrame
Namespace: LambdaSharp.Logging.ErrorReports.Models
Assembly: LambdaSharp.Logging.dll
Syntax
public class LambdaErrorReportStackFrame
Properties
ColumnNumber
The ColumnNumber property describes the column number in the source code.
Declaration
public int? ColumnNumber { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | Source code column number or |
FileName
The FileName property describes the source code file name of the stack trace.
Declaration
public string FileName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Source code file name or |
LineNumber
The LineNumber property describes the line number in the source code.
Declaration
public int? LineNumber { get; set; }
Property Value
Type | Description |
---|---|
System.Nullable<System.Int32> | Source code line number or |
MethodName
The MethodName property describes the method name in which the stack frame is located.
Declaration
public string MethodName { get; set; }
Property Value
Type | Description |
---|---|
System.String | Name of the method. |