2 instantiations of StackFrameSourceCodeInfo
Microsoft.AspNetCore.Diagnostics (2)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (1)
315
var frame = new
StackFrameSourceCodeInfo
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (1)
97
var stackFrame = new
StackFrameSourceCodeInfo
12 references to StackFrameSourceCodeInfo
Microsoft.AspNetCore.Diagnostics (12)
DeveloperExceptionPage\DeveloperExceptionPageMiddlewareImpl.cs (2)
294
var stackFrames = new List<
StackFrameSourceCodeInfo
>();
315
var
frame = new StackFrameSourceCodeInfo
DeveloperExceptionPage\Views\CompilationErrorPage.Designer.cs (1)
400
foreach (
var
frame in errorDetail.StackFrames)
DeveloperExceptionPage\Views\ErrorPage.Designer.cs (2)
370
var
firstFrame = errorDetail.StackFrames.FirstOrDefault();
583
foreach (
var
frame in errorDetail.StackFrames)
src\Shared\StackTrace\ExceptionDetails\ExceptionDetails.cs (3)
16
public ExceptionDetails(Exception error, IEnumerable<
StackFrameSourceCodeInfo
> stackFrames)
22
public ExceptionDetails(string errorMessage, IEnumerable<
StackFrameSourceCodeInfo
> stackFrames)
36
public IEnumerable<
StackFrameSourceCodeInfo
> StackFrames { get; }
src\Shared\StackTrace\ExceptionDetails\ExceptionDetailsProvider.cs (4)
39
private IEnumerable<
StackFrameSourceCodeInfo
> GetStackFrames(Exception original)
95
internal
StackFrameSourceCodeInfo
GetStackFrameSourceCodeInfo(string? method, string? filePath, int lineNumber)
97
var
stackFrame = new StackFrameSourceCodeInfo
143
StackFrameSourceCodeInfo
frame,