Class StackFrame
- Namespace
- Quilt4Net.Toolkit.Features.ApplicationInsights
- Assembly
- Quilt4Net.Toolkit.dll
One frame in the parsed stack of an Application Insights exception. Mirrors the
fields AI stores under AppExceptions.Details[i].parsedStack[j].
public sealed record StackFrame : IEquatable<StackFrame>
- Inheritance
-
StackFrame
- Implements
- Inherited Members
Properties
Assembly
public string Assembly { get; init; }
Property Value
FileName
public string FileName { get; init; }
Property Value
HasFileLocation
True when the frame has no file/line — typically a system or framework frame.
public bool HasFileLocation { get; }
Property Value
Level
public int Level { get; init; }
Property Value
Line
public int Line { get; init; }
Property Value
Method
public string Method { get; init; }