Stack frame information.

interface IStackFrame {
    assembly: string;
    fileName: string;
    level: number;
    line: number;
    method: string;
}

Properties

assembly: string

Name of the assembly (dll, jar, etc.) containing this function.

fileName: string

File name or URL of the method implementation.

level: number

Level in the call stack. For the long stacks SDK may not report every function in a call stack.

line: number

Line number of the code implementation.

method: string

Method name.