Show / Hide Table of Contents

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 null if missing.

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 null if missing..

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 null if missing.

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.

In This Article
Back to top Generated by DocFX