File: StackFrame.bond

package info (click to toggle)
python-applicationinsights 0.11.10-2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 876 kB
  • sloc: python: 5,948; makefile: 151; sh: 77
file content (25 lines) | stat: -rw-r--r-- 701 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25

namespace AI

[Description("Stack frame information.")]
struct StackFrame
{
    [Description("Level in the call stack. For the long stacks SDK may not report every function in a call stack.")]
    10: required int32 	 level;
    
    [Description("Method name.")]
    [MaxStringLength("1024")]
    20: required string 	 method;
    
    [Description("Name of the assembly (dll, jar, etc.) containing this function.")]
    [MaxStringLength("1024")]
    30: string 	 assembly;
    
    [Description("File name or URL of the method implementation.")]
    [MaxStringLength("1024")]
    50: string 	 fileName;
    
    [Description("Line number of the code implementation.")]
    60: int32 	 line;
    
}